mirror of
https://github.com/nasa/openmct.git
synced 2025-02-01 08:48:28 +00:00
13 lines
565 B
HTML
13 lines
565 B
HTML
<span ng-show="notifications.length > 0" class="status block"
|
|
ng-class="{
|
|
'info': highest.severity===MessageSeverity.INFO,
|
|
'error': highest.severity===MessageSeverity.ERROR,
|
|
'alert': highest.severity===MessageSeverity.ALERT }"
|
|
ng-controller="NotificationIndicatorController">
|
|
<span class="ui-symbol status-indicator"></span>
|
|
<span class="label">
|
|
<a ng-click="showNotificationsList()">{{notifications.length}}
|
|
Notifications</a>
|
|
</span>
|
|
<span class="count">{{notifications.length}}</span>
|
|
</span> |