MOBILE-3320 a11y: Fix section selection never read on voiceover
parent
4eee983bad
commit
9ddfa57582
|
@ -19,8 +19,15 @@
|
||||||
<div *ngIf="displaySectionSelector && sections && hasSeveralSections"
|
<div *ngIf="displaySectionSelector && sections && hasSeveralSections"
|
||||||
class="ion-text-wrap ion-justify-content-between ion-align-items-center core-button-selector-row"
|
class="ion-text-wrap ion-justify-content-between ion-align-items-center core-button-selector-row"
|
||||||
[class.core-section-download]="downloadEnabled">
|
[class.core-section-download]="downloadEnabled">
|
||||||
<core-combobox [modalOptions]="sectionSelectorModalOptions" interface="modal" listboxId="core-course-section-button"
|
<core-combobox
|
||||||
icon="fas-folder" [label]="'core.course.section' | translate" (onChange)="sectionChanged($event)">
|
[modalOptions]="sectionSelectorModalOptions"
|
||||||
|
interface="modal"
|
||||||
|
listboxId="core-course-section-button"
|
||||||
|
icon="fas-folder"
|
||||||
|
[label]="'core.course.section' | translate"
|
||||||
|
[selection]="selectedSection ? selectedSection.name : 'core.course.sections' | translate"
|
||||||
|
(onChange)="sectionChanged($event)"
|
||||||
|
>
|
||||||
<span slot="text">
|
<span slot="text">
|
||||||
<core-format-text *ngIf="selectedSection" [text]="selectedSection.name" contextLevel="course"
|
<core-format-text *ngIf="selectedSection" [text]="selectedSection.name" contextLevel="course"
|
||||||
[contextInstanceId]="course?.id" [clean]="true" [singleLine]="true">
|
[contextInstanceId]="course?.id" [clean]="true" [singleLine]="true">
|
||||||
|
|
Loading…
Reference in New Issue