Skip to content

Commit

Permalink
Menu: Look into submenus for uninitialized menu items. Fixes #8773 - …
Browse files Browse the repository at this point in the history
…Menu: refresh() doesn't refresh existing submenus.

(cherry picked from commit 8b3e570)
  • Loading branch information
jzaefferer authored and scottgonzalez committed Nov 8, 2012
1 parent e65f3ff commit 9e0071f
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 23 deletions.
9 changes: 9 additions & 0 deletions tests/unit/menu/menu_methods.js
Expand Up @@ -60,6 +60,15 @@ test( "refresh", function() {
equal( element.find( ".ui-menu-item" ).length, 5, "Incorrect number of menu items" );
});

test( "refresh submenu", function() {
expect( 2 );
var element = $( "#menu2" ).menu();
equal( element.find( "ul:first .ui-menu-item" ).length, 3 );
element.find( "ul" ).andSelf().append( "<li><a href=\"#\">New Item</a></li>" );
element.menu("refresh");
equal( element.find( "ul:first .ui-menu-item" ).length, 4 );
});

test( "widget", function() {
expect( 2 );
var element = $( "#menu1" ).menu(),
Expand Down
47 changes: 24 additions & 23 deletions ui/jquery.ui.menu.js
Expand Up @@ -277,21 +277,35 @@ $.widget( "ui.menu", {
},

refresh: function() {
// Initialize nested menus
var menus,
icon = this.options.icons.submenu,
submenus = this.element.find( this.options.menus + ":not(.ui-menu)" )
.addClass( "ui-menu ui-widget ui-widget-content ui-corner-all" )
.hide()
.attr({
role: this.options.role,
"aria-hidden": "true",
"aria-expanded": "false"
});
submenus = this.element.find( this.options.menus );

// Initialize nested menus
submenus.filter( ":not(.ui-menu)" )
.addClass( "ui-menu ui-widget ui-widget-content ui-corner-all" )
.hide()
.attr({
role: this.options.role,
"aria-hidden": "true",
"aria-expanded": "false"
})
.each(function() {
var menu = $( this ),
item = menu.prev( "a" ),
submenuCarat = $( "<span>" )
.addClass( "ui-menu-icon ui-icon " + icon )
.data( "ui-menu-submenu-carat", true );

item
.attr( "aria-haspopup", "true" )
.prepend( submenuCarat );
menu.attr( "aria-labelledby", item.attr( "id" ) );
});

// Don't refresh list items that are already adapted
menus = submenus.add( this.element );

// Don't refresh list items that are already adapted
menus.children( ":not(.ui-menu-item):has(a)" )
.addClass( "ui-menu-item" )
.attr( "role", "presentation" )
Expand All @@ -315,19 +329,6 @@ $.widget( "ui.menu", {
// Add aria-disabled attribute to any disabled menu item
menus.children( ".ui-state-disabled" ).attr( "aria-disabled", "true" );

submenus.each(function() {
var menu = $( this ),
item = menu.prev( "a" ),
submenuCarat = $( "<span>" )
.addClass( "ui-menu-icon ui-icon " + icon )
.data( "ui-menu-submenu-carat", true );

item
.attr( "aria-haspopup", "true" )
.prepend( submenuCarat );
menu.attr( "aria-labelledby", item.attr( "id" ) );
});

// If the active item has been removed, blur the menu
if ( this.active && !$.contains( this.element[ 0 ], this.active[ 0 ] ) ) {
this.blur();
Expand Down

0 comments on commit 9e0071f

Please sign in to comment.