Merge pull request #1305 from Brantron/notification-bell

Make notification icon clickable
This commit is contained in:
Andrew Henry 2016-12-02 14:22:52 -08:00 committed by GitHub
commit 68d6920d38

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>