mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
19 lines
606 B
Text
19 lines
606 B
Text
span(ng-controller="NotificationsController")
|
|
aside.col-md-2.col-xs-3
|
|
.col-md-10.col-xs-9
|
|
.row
|
|
.col-xs-12(ng-cloak)
|
|
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 {{unreadNotification.html}}
|
|
button(ng-click="dismiss(unreadNotification)").close.pull-right
|
|
span(aria-hidden="true") ×
|
|
span.sr-only #{translate("close")}
|