Description
We faced an a11y issue while BITV examination (german wcag). You can't focus the templates for a new article by keyboard. We fixed it temporarily with a script:
// Vorlagen sind nicht mit Tastatur anwählbar try { let vorlagen = document.querySelectorAll(".xwiki-select-option"); let index = 0, length = vorlagen.length; for(; index < length; index++) { vorlagen[index].setAttribute('tabIndex', '0'); } } catch (e) { console.log('Keine Vorlagen zum Anspringen gefunden') }
Attachments
Issue Links
- is related to
-
XWIKI-20891 Rich select input is not accessible
- Closed