mirror of
https://github.com/nasa/openmct.git
synced 2024-12-22 22:42:24 +00:00
48bcb662c6
Add indicators as a category-of-extension, utilized from the bottom bar to populate its contents. WTD-608.
23 lines
858 B
HTML
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> |