From 06eb3bff6a2e2a40fc5a540f46680c6fdf830f94 Mon Sep 17 00:00:00 2001 From: Felix Nagel Date: Wed, 13 Feb 2013 23:09:00 +0100 Subject: Selectmenu: menuItems now contains link elements instead of list elements --- ui/jquery.ui.selectmenu.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ui') diff --git a/ui/jquery.ui.selectmenu.js b/ui/jquery.ui.selectmenu.js index 69ea12e26..0468983a5 100644 --- a/ui/jquery.ui.selectmenu.js +++ b/ui/jquery.ui.selectmenu.js @@ -146,7 +146,7 @@ $.widget( "ui.selectmenu", { that.focus = item.index; // Set ARIA active descendant - that.button.attr( "aria-activedescendant", that.menuItems.eq( item.index ).find( "a" ).attr( "id" ) ); + that.button.attr( "aria-activedescendant", that.menuItems.eq( item.index ).attr( "id" ) ); }, // set ARIA role role: "listbox" @@ -172,7 +172,7 @@ $.widget( "ui.selectmenu", { this._renderMenu( this.menu, this.items ); this.menu.menu( "refresh" ); - this.menuItems = this.menu.find( "li" ).not( ".ui-selectmenu-optgroup" ); + this.menuItems = this.menu.find( "li" ).not( ".ui-selectmenu-optgroup" ).find( "a" ); item = this._getSelectedItem(); // make sure menu is selected item aware @@ -372,11 +372,11 @@ $.widget( "ui.selectmenu", { }, _setAria: function( item ) { - var link = this.menuItems.eq( item.index ).find( "a" ), + var link = this.menuItems.eq( item.index ), id = link.attr( "id" ); // change ARIA attr - this.menuItems.find( "a" ).attr( "aria-selected", false ); + this.menuItems.attr( "aria-selected", false ); link.attr( "aria-selected", true ); this.button.attr({ "aria-labelledby": id, -- cgit v1.2.3