view src/app/playback-control/playback-control.component.html @ 269:077b57d64bbd

Helper method for accessing current item from MdSelect
author Lucas Thompson <dev@lucas.im>
date Tue, 02 May 2017 15:16:44 +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>