You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
945 B
16 lines
945 B
9 years ago
|
<div class="terminal-window pod-log-window" pod-log-window ng-mousedown="raise()">
|
||
|
<div class="resize-dot" ng-mousedown="startResize($event)" ng-hide="docked"></div>
|
||
|
<div class="centered scroll-indicator" ng-hide="atBottom" ng-click="atBottom = true">
|
||
|
<span class="fa fa-caret-down"></span>
|
||
|
</div>
|
||
|
<div class="terminal-title" ng-mousedown="mouseDown($event)" ng-mouseup="mouseUp($event)" ng-mousemove="mouseMove($event)">
|
||
|
<h5>{{containerName}} logs</h5>
|
||
|
<i class="fa fa-remove pull-right clickable" title="Close and exit this log" ng-click="close()"></i>
|
||
|
<i class="fa fa-square-o pull-right clickable" title="Maximize this log" ng-click="maximize($event)"></i>
|
||
|
<i class="fa fa-sort-desc pull-right clickable" ng-hide="maximized()" title="Minimize this log" ng-click="minimize($event)"></i>
|
||
|
</div>
|
||
|
<div class="terminal-body" scroll-glue ng-model="atBottom">
|
||
|
<pod-log-display></pod-log-display>
|
||
|
</div>
|
||
|
</div>
|