Welcome to mirror list, hosted at ThFree Co, Russian Federation.

notification.directive.html « notification « angularjs « CoreHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 82138156f1891183bb940a6149a9f0684daf95e3 (plain)
1
2
3
4
5
6
7
8
<div class="notification system">
    <button type="button" class="close" data-dismiss="alert" ng-if="!noclear" ng-click="notification.markNotificationAsRead(notificationId)">&times;</button>
    <strong ng-if="title">{{ title }}</strong>

    <!-- ng-transclude causes directive child elements to be added here -->
    <div ng-transclude></div>

</div>