view src/app/playback-control/playback-control.component.html @ 509:041468f553e1 tip master

Merge pull request #57 from LucasThompson/fix/session-stack-max-call-stack Fix accidental recursion in PersistentStack
author Lucas Thompson <LucasThompson@users.noreply.github.com>
date Mon, 27 Nov 2017 11:04:30 +0000
parents cf4a17efb5d4
children
line wrap: on
line source
<button mat-icon-button (click)="emitFastRewindStart()">
  <mat-icon>skip_previous</mat-icon>
</button>
<button mat-icon-button (click)="emitPlayPause()">
  <mat-icon>
    <ng-template [ngIf]="isPlaying()">pause</ng-template>
    <ng-template [ngIf]="!isPlaying()">play_arrow</ng-template>
  </mat-icon>
</button>