Created
January 30, 2017 19:02
-
-
Save venkateshwarv/d8bbaa2a1198013a71b97813a16a8897 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="outer-container"> | |
<div class="message"> | |
<span class="md-simple-snackbar-message" [innerHtml]="message"></span> | |
</div> | |
<div class="controls"> | |
<button md-button class="md-simple-snackbar-action" | |
*ngIf="hasAction" (click)="dismiss()">{{action}}</button> | |
<md-icon fontSet="fa" *ngIf="!hasAction" fontIcon="fa-times" (click)="dismiss()"></md-icon> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment