Xinni Ge 59bdf1db3a Update files to upstream
1. update js file content.
2. remove scss file and add css file.
3. add the html template file.

Change-Id: I328b902b43def31d0f1e8a31da8c2c427c2bfa65
2018-04-27 13:57:04 +09:00

20 lines
639 B
HTML

<div class="cg-notify-message" ng-class="[$classes,
$position === 'center' ? 'cg-notify-message-center' : '',
$position === 'left' ? 'cg-notify-message-left' : '',
$position === 'right' ? 'cg-notify-message-right' : '']"
ng-style="{'margin-left': $centerMargin}">
<div ng-show="!$messageTemplate">
{{$message}}
</div>
<div ng-show="$messageTemplate" class="cg-notify-message-template">
</div>
<button type="button" class="cg-notify-close" ng-click="$close()">
<span aria-hidden="true">&times;</span>
<span class="cg-notify-sr-only">Close</span>
</button>
</div>