github.com/justinjmoses/evergreen@v0.0.0-20170530173719-1d50e381ff0d/public/static/partials/notifybox.html (about)

     1  <div ng-controller="NotifyBoxCtrl">
     2    <div ng-show="notifications.length > 0" id=[[destination]]>
     3      <div ng-repeat="notification in notificationsForDest(destination) track by $index" class="alert error-flash" ng-class="notificationBoxClass(notification)">
     4        <button type="button" class="alert-close pull-left" aria-hidden="true" ng-click="close($event)">&times;</button>
     5        [[notification.msg]]
     6      </div>
     7    </div>
     8  </div>