diff src/app/playback-control/playback-control.component.html @ 256:6d128e43f4d5

Merge remote-tracking branch 'lucas/feature/determinate-spinner'
author Chris Cannam <cannam@all-day-breakfast.com>
date Fri, 28 Apr 2017 09:23:57 +0100
parents 53ea6406d601
children cc8a1e08dd2d
line wrap: on
line diff
--- a/src/app/playback-control/playback-control.component.html	Thu Apr 27 16:41:04 2017 +0100
+++ b/src/app/playback-control/playback-control.component.html	Fri Apr 28 09:23:57 2017 +0100
@@ -1,6 +1,6 @@
 <button md-icon-button (click)="emitPlayPause()">
   <md-icon>
-    <template [ngIf]="isPlaying()">pause</template>
-    <template [ngIf]="!isPlaying()">play_arrow</template>
+    <ng-template [ngIf]="isPlaying()">pause</ng-template>
+    <ng-template [ngIf]="!isPlaying()">play_arrow</ng-template>
   </md-icon>
 </button>