Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. <ul class="dropdown-menu notification-menu" aria-labelledby="dropdownNoti">
  2. <div class="col-md-12 col-xs-12" style="border-bottom: #655771;border-bottom-style: double;">
  3. <h5 class="notification-title"><i class="fa fa-bell"></i> Notifications</h5>
  4. <a class="mark-all" ng-click="vm.markAllRead()">Mark all as read</a>
  5. </div>
  6. <div class="not-body">
  7. <li ng-if="!vm.notifications.length"><a>You have no new notification yet.</a></li>
  8. <li class="notification-type" ng-repeat="notification in vm.notifications" ng-style="{'background-color': notification.unread==false? 'white' : '#f5f5f5'}" style="border-bottom-style: ridge;">
  9. <a href="">{{notification.description}}
  10. <h6><i class="fa fa-clock-o"></i> {{vm.timeOf(notification)}}</h6>
  11. </a>
  12. <a class="mark-as btn btn-default " ng-click="vm.markAsRead(notification)" data-toggle="popover" data-trigger="hover" data-content="as read" ng-class="{'add-white' : notification.unread==true }" ></a>
  13. </li>
  14. </div>
  15. </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement