Commit c9392ab018ed0868ed772a77e6e5fbbfa7ff7a8e

Authored by Artem Halushko
1 parent 47c29f27

ie support fix

@@ -37,19 +37,18 @@ @@ -37,19 +37,18 @@
37 <button mat-icon-button class="mat-icon-button" aria-label="End" (click)="moveEnd()"> 37 <button mat-icon-button class="mat-icon-button" aria-label="End" (click)="moveEnd()">
38 <mat-icon class="material-icons" [ngStyle]="{'color': settings.buttonColor}">fast_forward</mat-icon> 38 <mat-icon class="material-icons" [ngStyle]="{'color': settings.buttonColor}">fast_forward</mat-icon>
39 </button> 39 </button>
40 - <button mat-icon-button class="mat-icon-button" aria-label="Play">  
41 - <mat-icon (click)="play()" *ngIf="!playing" class="material-icons"  
42 - [ngStyle]="{'color': settings.buttonColor}"> 40 + <button mat-icon-button class="mat-icon-button" *ngIf="!playing" (click)="play()" aria-label="Play">
  41 + <mat-icon class="material-icons" [ngStyle]="{'color': settings.buttonColor}">
43 play_circle_outline 42 play_circle_outline
44 </mat-icon> 43 </mat-icon>
45 - <mat-icon (click)="pause()" *ngIf="playing" class="material-icons"  
46 - [ngStyle]="{'color': settings.buttonColor}"> 44 + </button>
  45 + <button mat-icon-button class="mat-icon-button" *ngIf="playing" (click)="pause()" aria-label="Stop">
  46 + <mat-icon class="material-icons" [ngStyle]="{'color': settings.buttonColor}">
47 pause_circle_outline 47 pause_circle_outline
48 </mat-icon> 48 </mat-icon>
49 </button> 49 </button>
50 - <mat-select [(ngModel)]="speed" (selectionChange)="reeneble()" class="speed-select"  
51 - aria-label="Speed selector"> 50 + <mat-select [(ngModel)]="speed" (selectionChange)="reeneble()" class="speed-select" aria-label="Speed selector">
52 <mat-option [value]="speedValue" *ngFor="let speedValue of speeds">{{speedValue}} </mat-option> 51 <mat-option [value]="speedValue" *ngFor="let speedValue of speeds">{{speedValue}} </mat-option>
53 </mat-select> 52 </mat-select>
54 </div> 53 </div>
55 -</div> 54 +</div>