11 lines
404 B
HTML
11 lines
404 B
HTML
<div ng-controller="ConsoleController" id="ConsoleController">
|
|
|
|
<div id="vertical-container" style="height: 600px" class="Output scrollable">
|
|
<div ng-repeat="line in Output" ng-class="line.Class">{{line.Message}}</div>
|
|
</div>
|
|
|
|
<form ng-submit="SubmitCommand()" class="md-inline-form">
|
|
<input type="text" class="form-control" ng-model="Command" ng-keyup="KeyUp($event)" />
|
|
</form>
|
|
|
|
</div> |