view src/app/playback-control/playback-control.component.html @ 225:16d19c12e42f

Remove redundant injection of feature extraction service.
author Lucas Thompson <dev@lucas.im>
date Fri, 21 Apr 2017 12:58:55 +0100
parents d5256e8309ab
children 53ea6406d601
line wrap: on
line source
<button md-icon-button (click)="emitPlayPause()">
  <md-icon>
    <template [ngIf]="isPlaying()">pause</template>
    <template [ngIf]="!isPlaying()">play_arrow</template>
  </md-icon>
</button>