Finish basic notifications system and verify it works for the "password_required" notification.

This commit is contained in:
Joseph Schorr 2014-03-12 16:05:32 -04:00
parent f186fa2888
commit 578add3b9e
7 changed files with 128 additions and 12 deletions

View file

@ -0,0 +1,7 @@
<div class="notification-view-element">
<div class="container" ng-click="showNotification();">
<div class="message">{{ getMessage(notification) }}</div>
<div class="datetime">{{ parseDate(notification.created) | date:'medium'}}</div>
<div class="circle" ng-class="getClass(notification)"></div>
</div>
</div>