campuspress / divi-accessibility

Improve Divi accessibility in accordance with WCAG 2.0 guidelines.
https://wordpress.org/plugins/accessible-divi/
GNU General Public License v2.0
127 stars 29 forks source link

Fix tabs controls value #47

Closed KawanSoares closed 3 years ago

KawanSoares commented 3 years ago

According Lighthouse report, the value "tabList" isn't valid, lowercase "tablist" is expected.

Screenshot from Lighthouse Report ![image](https://user-images.githubusercontent.com/3937749/117191128-9b888280-adb6-11eb-937f-9fc9131d637a.png)

I fixed it by changing the line below: aria_suport.js: 9 $(this).attr('role', 'tabList'); to $(this).attr('role', 'tablist');

alexstine commented 3 years ago

@TxSadhu You want to fix this up and then release a bug fix?

Thanks.