Menu: Remove unnecessary returns from expand and collapse

This commit is contained in:
kborchers 2012-07-09 23:43:52 -05:00
parent 22d078aac6
commit 1a22a675d8

View File

@ -483,7 +483,6 @@ $.widget( "ui.menu", {
if ( newItem && newItem.length ) {
this._close();
this.focus( event, newItem );
return true;
}
},
@ -501,7 +500,6 @@ $.widget( "ui.menu", {
this._delay(function() {
this.focus( event, newItem );
}, 20 );
return true;
}
},