blob: dc33ecdd61ca329af5501b92063994bbc9d6c3e1 (
plain) (
blame)
1
2
3
4
5
6
7
|
<div class="toast" [ngClass]="ToastType[type].toLowerCase()" #toastDiv>
<span>{{this.message}}</span>
<a *ngIf="this.action" href="#" (click)="this.action.onAction(); $event.preventDefault(); hide()">{{this.action.label}}</a>
<button (click)="hide()">
<span class="icon">close</span>
</button>
</div>
|