Jean-Jacques Sarton
Jean-Jacques Sarton
> Ok. How will browser know if app is streaming as it use MJPEG and starting image is a part of this MJPEG? From browser perspective, all it knows is...
> Connecting up the forum topic: https://www.simplemachines.org/community/index.php?topic=584355.0 By the way, on Linux you can check the screenreader output with orca, in Apple systems with voiceOver and of the nit true...
> Do these fail using Chrome's Lighthouse check or is there another tool to assist us here? Lighthouse cover only some aspects, manual test are all way required. Alternative, which...
Some things are feasible on 2.1 For my own, I have a copy of the default theme and added some files from the default. PHP: * file containing tabindex, with...
> > I'm sure there are some helpful things doable in 2.1.x. E.g., the forum request referenced above is only for an aria label on the editor. > > Yes,...
Setting aria-label for the textarea should probably be done within the theme.js script. ``` for each element with class cat_bar search for textarea under the cat_bar parent if found get...
I have reached to put an aria-label to the sceditor textarea: ``` var ariaEventCount=0; window.addEventListener('focus', function aria() { document.querySelectorAll('.cat_bar').forEach(catbar => { var area = catbar.parentNode.querySelectorAll('textarea'); area.forEach(ar => { text =...
Nothing is done, I have found a way, but I have to modify a lot of things in order to get SMF a little bit accessible. There is always more...
@ryrylu > I also began making the theme nicer from the point of a11y, ... I have also added some aria-label, role may, at some places, be avoided by using...
I understood you well, my first intention was to work only with CSS modifications, this seems not to be enough. Since tabindex with value greater as 0 are used, I...