ie support fix

This commit is contained in:
Artem Halushko 2020-05-22 17:47:46 +03:00
parent 47c29f27e0
commit c9392ab018

View File

@ -37,18 +37,17 @@
<button mat-icon-button class="mat-icon-button" aria-label="End" (click)="moveEnd()"> <button mat-icon-button class="mat-icon-button" aria-label="End" (click)="moveEnd()">
<mat-icon class="material-icons" [ngStyle]="{'color': settings.buttonColor}">fast_forward</mat-icon> <mat-icon class="material-icons" [ngStyle]="{'color': settings.buttonColor}">fast_forward</mat-icon>
</button> </button>
<button mat-icon-button class="mat-icon-button" aria-label="Play"> <button mat-icon-button class="mat-icon-button" *ngIf="!playing" (click)="play()" aria-label="Play">
<mat-icon (click)="play()" *ngIf="!playing" class="material-icons" <mat-icon class="material-icons" [ngStyle]="{'color': settings.buttonColor}">
[ngStyle]="{'color': settings.buttonColor}">
play_circle_outline play_circle_outline
</mat-icon> </mat-icon>
<mat-icon (click)="pause()" *ngIf="playing" class="material-icons" </button>
[ngStyle]="{'color': settings.buttonColor}"> <button mat-icon-button class="mat-icon-button" *ngIf="playing" (click)="pause()" aria-label="Stop">
<mat-icon class="material-icons" [ngStyle]="{'color': settings.buttonColor}">
pause_circle_outline pause_circle_outline
</mat-icon> </mat-icon>
</button> </button>
<mat-select [(ngModel)]="speed" (selectionChange)="reeneble()" class="speed-select" <mat-select [(ngModel)]="speed" (selectionChange)="reeneble()" class="speed-select" aria-label="Speed selector">
aria-label="Speed selector">
<mat-option [value]="speedValue" *ngFor="let speedValue of speeds">{{speedValue}} </mat-option> <mat-option [value]="speedValue" *ngFor="let speedValue of speeds">{{speedValue}} </mat-option>
</mat-select> </mat-select>
</div> </div>