mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
15 lines
517 B
Text
15 lines
517 B
Text
span(ng-controller="NotificationsController").userNotifications
|
|
ul.list-unstyled.notifications-list(
|
|
ng-if="notifications.length > 0",
|
|
ng-cloak
|
|
)
|
|
li.notification_entry(
|
|
ng-repeat="unreadNotification in notifications",
|
|
)
|
|
.row(ng-hide="unreadNotification.hide")
|
|
.col-xs-12
|
|
.alert.alert-info
|
|
span(ng-bind-html="unreadNotification.html")
|
|
button(ng-click="dismiss(unreadNotification)").close.pull-right
|
|
span(aria-hidden="true") ×
|
|
span.sr-only #{translate("close")}
|