mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
de2ef2a585
This avoids styling issues where ui-state-focus rules apply to submenus. Fixes #10162 Closes gh-1342
34 lines
506 B
JavaScript
34 lines
506 B
JavaScript
(function() {
|
|
|
|
var lastItem,
|
|
log = [];
|
|
|
|
TestHelpers.menu = {
|
|
log: function( message, clear ) {
|
|
if ( clear ) {
|
|
log.length = 0;
|
|
}
|
|
if ( message === undefined ) {
|
|
message = lastItem;
|
|
}
|
|
log.push( $.trim( message ) );
|
|
},
|
|
|
|
logOutput: function() {
|
|
return log.join( "," );
|
|
},
|
|
|
|
clearLog: function() {
|
|
log.length = 0;
|
|
},
|
|
|
|
click: function( menu, item ) {
|
|
lastItem = item;
|
|
menu.children( ":eq(" + item + ")" )
|
|
.children( ".ui-menu-item-wrapper" )
|
|
.trigger( "click" );
|
|
}
|
|
};
|
|
|
|
})();
|