Skip to content

Instantly share code, notes, and snippets.

View adrianriepl's full-sized avatar
🎯
Focusing

Adrian Riepl adrianriepl

🎯
Focusing
View GitHub Profile
@adrianriepl
adrianriepl / translatable-toast.component.html
Created June 12, 2018 14:27
Custom translatable component using ngx-translate for ngx-toastr
<!-- Close button -->
<button *ngIf="options.closeButton" (click)="remove()" class="toast-close-button" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
<!-- Title of the toast -->
<div *ngIf="title" [class]="options.titleClass" [attr.aria-label]="title">
{{ title | translate }}
</div>