view src/app/playback-control/playback-control.component.html @ 250:c60b03098bae

Rename to indicate not all responses are sent.
author Lucas Thompson <dev@lucas.im>
date Thu, 27 Apr 2017 10:37:26 +0100
parents 53ea6406d601
children cc8a1e08dd2d
line wrap: on
line source
<button md-icon-button (click)="emitPlayPause()">
  <md-icon>
    <ng-template [ngIf]="isPlaying()">pause</ng-template>
    <ng-template [ngIf]="!isPlaying()">play_arrow</ng-template>
  </md-icon>
</button>