openmct/platform/commonUI/notification/res/notification-indicator.html
Charles Hacskaylo 8bb8db69e6 [Frontend] Refactoring glyphs to classes
Fixes #1047
In-progress; indicators, notifications, actions,
tests
2016-06-28 14:47:52 -07:00

9 lines
464 B
HTML

<!-- DO NOT ADD SPACES BETWEEN THE SPANS - IT ADDS WHITE SPACE!! -->
<span ng-show="notifications.length > 0" class="status block"
ng-class="highest.severity"
ng-controller="NotificationIndicatorController">
<span class="status-indicator icon-bell"></span><span class="label">
<a ng-click="showNotificationsList()">{{notifications.length}}
Notifications</a>
</span><span class="count">{{notifications.length}}</span>
</span>