Created
June 19, 2018 18:06
-
-
Save daniele-zurico/3a60d3e993a0e86e567706f8e7819e98 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
<swkb-hero *ngFor="let hero of heroes$ | async; trackBy: trackByUrl" | |
[hero]="hero"></swkb-hero> | |
<div class="loader__bg" *ngIf="isLoading$ | async"> | |
<mat-spinner | |
class="loader" | |
color="accent" | |
mode="indeterminate" | |
[diameter]="40" | |
[value]="25"></mat-spinner> | |
</div> | |
<section class="full-width pager"> | |
<button mat-raised-button | |
color="accent" | |
[class.invisible]="isFirst$ | async" | |
(click)="prev()">PREVIOUS</button> | |
<button mat-raised-button | |
color="accent" | |
[class.invisible]="isLast$ | async" | |
(click)="next()">NEXT</button> | |
</section> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment