We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.glider-dots
.glider-dot
As stated in https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Roles/tab_role
Elements with the role tab must either be a child of an element with the tablist role, or have their id as part of the aria-owns property of a tablist
Possible Fix _.dots.setAttribute('role','tablist') to the function below in glider.js file
_.dots.setAttribute('role','tablist')
The text was updated successfully, but these errors were encountered:
I think this has been fixed, but nobody commented on your issue. :( In glider.js line 222, I see the attribute set just as you suggested.
Sorry, something went wrong.
yes, it's been fixed! Thanks @kevinfarrugia for fixing it!
No branches or pull requests
Steps to Reproduce:
Expected Fix
.glider-dots
parent container should have aria role "tablist" if the aria role for each.glider-dot
is "tab".As stated in https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Roles/tab_role
Possible Fix
_.dots.setAttribute('role','tablist')
to the function below in glider.js fileThe text was updated successfully, but these errors were encountered: