alert.tpl.html 331 B

12345678
  1. <div class="alert" ng-class="[type ? 'alert-' + type : null]">
  2. <button type="button" class="close" ng-if="dismissable" ng-click="$hide()">&times;</button>
  3. <span ng-if="title">
  4. <strong ng-bind="title"></strong>&nbsp;<span ng-bind-html="content"></span>
  5. </span>
  6. <span ng-if="!title" ng-bind-html="content"></span>
  7. </div>