annotate src/app/recording-control/recording-control.component.html @ 349:bf038a51f7e3
Restore some of the feature related logic from waveform.component into a utilities module. Introduce some additional types for representing reshaped features. A work in progress.
author |
Lucas Thompson <dev@lucas.im> |
date |
Thu, 25 May 2017 17:57:03 +0100 |
parents |
53ea6406d601 |
children |
cf4a17efb5d4 |
rev |
line source |
dev@133
|
1 <button md-icon-button (click)="emitToggleRecording()">
|
dev@133
|
2 <md-icon>
|
dev@236
|
3 <ng-template [ngIf]="recordingStatus == 'enabled'">mic_none</ng-template>
|
dev@236
|
4 <ng-template [ngIf]="recordingStatus == 'disabled'">mic_off</ng-template>
|
dev@236
|
5 <ng-template [ngIf]="recordingStatus == 'recording'">mic_on</ng-template>
|
dev@133
|
6 </md-icon>
|
dev@133
|
7 </button>
|
dev@133
|
8
|