Fixes #1239 make notification icon clickable

This commit is contained in:
Brandon Lawrence 2016-10-27 17:48:11 -04:00
parent 365af918f3
commit a8c9b6f7fe

View File

@ -1,9 +1,9 @@
<!-- DO NOT ADD SPACES BETWEEN THE SPANS - IT ADDS WHITE SPACE!! -->
<span ng-show="notifications.length > 0" class="status block"
<a ng-click="showNotificationsList()" 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>
{{notifications.length}} Notifications
</span><span class="count">{{notifications.length}}</span>
</span>
</a>