angular-notify.html 639 B

1234567891011121314151617181920
  1. <div class="cg-notify-message" ng-class="[$classes,
  2. $position === 'center' ? 'cg-notify-message-center' : '',
  3. $position === 'left' ? 'cg-notify-message-left' : '',
  4. $position === 'right' ? 'cg-notify-message-right' : '']"
  5. ng-style="{'margin-left': $centerMargin}">
  6. <div ng-show="!$messageTemplate">
  7. {{$message}}
  8. </div>
  9. <div ng-show="$messageTemplate" class="cg-notify-message-template">
  10. </div>
  11. <button type="button" class="cg-notify-close" ng-click="$close()">
  12. <span aria-hidden="true">&times;</span>
  13. <span class="cg-notify-sr-only">Close</span>
  14. </button>
  15. </div>