Skip to content
Snippets Groups Projects
Commit c84b0019 authored by André Holger Hanke's avatar André Holger Hanke
Browse files

Add repeat option to selection menu

parent 3f3b0049
No related merge requests found
...@@ -2,14 +2,14 @@ ...@@ -2,14 +2,14 @@
<h2 tabindex="0" class="modal" mat-dialog-title >{{ 'introduction.title' | translate }}</h2> <h2 tabindex="0" class="modal" mat-dialog-title >{{ 'introduction.title' | translate }}</h2>
<mat-divider></mat-divider> <mat-divider></mat-divider>
<mat-dialog-content> <mat-dialog-content>
<div class="visually-hidden" tabindex="0" mat-dialog-title> <div class="visually-hidden" tabindex="0" id="selection" mat-dialog-title>
<ng-container *ngIf="currentLang=='en'">You're on the introduction page. Press 1 to start a demonstration <ng-container *ngIf="currentLang=='en'">You're on the introduction page. Press 1 to start a demonstration
video, 2 for a transcript of the video, or press 3 to get information about the frag.jetzt. video, 2 for a transcript of the video, press 3 to get information about the frag.jetzt.
project. project or 4 to repeat this dialog.
</ng-container> </ng-container>
<ng-container *ngIf="currentLang=='de'">Du befindest dich auf der Einführungsseite. Drücke die 1 um ein <ng-container *ngIf="currentLang=='de'">Du befindest dich auf der Einführungsseite. Drücke die 1 um ein
Demonstrationsvideo zu starten, die 2 für ein Transskript des Videos oder die 3 um Informationen über das Demonstrationsvideo zu starten, die 2 für ein Transskript des Videos, die 3 um Informationen über das
frag.jetzt-Projekt zu erhalten. frag.jetzt-Projekt zu erhalten oder die 4 um diesen Dialog nocheinmal zu hören.
</ng-container> </ng-container>
</div> </div>
<div id="setFocus" class="intro-text" tabindex="0"> <div id="setFocus" class="intro-text" tabindex="0">
......
...@@ -35,6 +35,8 @@ export class DemoVideoComponent implements OnInit, OnDestroy { ...@@ -35,6 +35,8 @@ export class DemoVideoComponent implements OnInit, OnDestroy {
this.focusElement(document.getElementById('demoContentTranscript')); this.focusElement(document.getElementById('demoContentTranscript'));
} else if (KeyboardUtils.isKeyEvent(e, KeyboardKey.Digit3)) { } else if (KeyboardUtils.isKeyEvent(e, KeyboardKey.Digit3)) {
this.focusElement(document.getElementById('demoContent')); this.focusElement(document.getElementById('demoContent'));
} else if (KeyboardUtils.isKeyEvent(e, KeyboardKey.Digit4)) {
this.focusElement((document.getElementById('selection')));
} }
}); });
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment