openmct/platform/commonUI/general/res/templates/bottombar.html
Victor Woeltjen 48bcb662c6 [Indicators] Add notion of indicators
Add indicators as a category-of-extension, utilized
from the bottom bar to populate its contents.
WTD-608.
2014-12-15 10:17:02 -08:00

23 lines
858 B
HTML

<div class='abs bottom-bar ue-bottom-bar' ng-controller="BottomBarController as bar">
<div id='status' class='status-holder abs'>
<div ng-repeat="indicator in bar.getIndicators()"
class='status block'
ng-class='indicator.getClass()'>
<span class="ui-symbol status-indicator"
ng-class='indicator.getGlyphClass()'>
{{indicator.getGlyph()}}
</span>
<span class="label"
ng-class='indicator.getTextClass()'>
{{indicator.getText()}}
</span>
<a href=''
class="ui-symbol"
ng-if="indicator.configure"
ng-click="indicator.configure()">
G
</a>
</div>
</div>
<!--mct-include key="'app-logo'"></mct-include-->
</div>