forked from mirror/_s
Remove aria-haspopup.
This commit is contained in:
parent
4aa1e19a5a
commit
25abf6d66f
|
@ -5,7 +5,7 @@
|
||||||
* navigation support for dropdown menus.
|
* navigation support for dropdown menus.
|
||||||
*/
|
*/
|
||||||
( function() {
|
( function() {
|
||||||
var container, button, menu, links, subMenus, i, len;
|
var container, button, menu, links, i, len;
|
||||||
|
|
||||||
container = document.getElementById( 'site-navigation' );
|
container = document.getElementById( 'site-navigation' );
|
||||||
if ( ! container ) {
|
if ( ! container ) {
|
||||||
|
@ -44,12 +44,6 @@
|
||||||
|
|
||||||
// Get all the link elements within the menu.
|
// Get all the link elements within the menu.
|
||||||
links = menu.getElementsByTagName( 'a' );
|
links = menu.getElementsByTagName( 'a' );
|
||||||
subMenus = menu.getElementsByTagName( 'ul' );
|
|
||||||
|
|
||||||
// Set menu items with submenus to aria-haspopup="true".
|
|
||||||
for ( i = 0, len = subMenus.length; i < len; i++ ) {
|
|
||||||
subMenus[i].parentNode.setAttribute( 'aria-haspopup', 'true' );
|
|
||||||
}
|
|
||||||
|
|
||||||
// Each time a menu link is focused or blurred, toggle focus.
|
// Each time a menu link is focused or blurred, toggle focus.
|
||||||
for ( i = 0, len = links.length; i < len; i++ ) {
|
for ( i = 0, len = links.length; i < len; i++ ) {
|
||||||
|
|
Reference in New Issue