Showing
1 changed file
with
7 additions
and
8 deletions
... | ... | @@ -37,19 +37,18 @@ |
37 | 37 | <button mat-icon-button class="mat-icon-button" aria-label="End" (click)="moveEnd()"> |
38 | 38 | <mat-icon class="material-icons" [ngStyle]="{'color': settings.buttonColor}">fast_forward</mat-icon> |
39 | 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 | 42 | play_circle_outline |
44 | 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 | 47 | pause_circle_outline |
48 | 48 | </mat-icon> |
49 | 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 | 51 | <mat-option [value]="speedValue" *ngFor="let speedValue of speeds">{{speedValue}} </mat-option> |
53 | 52 | </mat-select> |
54 | 53 | </div> |
55 | -</div> | |
54 | +</div> | |
\ No newline at end of file | ... | ... |