Details
-
Bug
-
Resolution: Fixed
-
Major
-
13.1
-
None
-
Unknown
-
N/A
-
-
2.1.1 Keyboard
Description
We faced an a11y issue while BITV examination (german wcag). The like button at bottom of every article can't be accessed by keyboard. We fixed it temporarily with a script:
try { let likeDiv = document.querySelector("#xdocFooter > div.like-container > div"); likeDiv.setAttribute('tabIndex', '0'); } catch(e) { console.log('Like-Button nicht gefunden') }