Menu: Add comment explaining extra filter from keypress

This commit is contained in:
kborchers 2012-05-31 23:03:51 -05:00
parent ef9a0c005c
commit 6e7ee98603

View File

@ -229,7 +229,8 @@ $.widget( "ui.menu", {
this.active.nextAll( ".ui-menu-item" ) : this.active.nextAll( ".ui-menu-item" ) :
match; match;
// TODO: document what's going on here, character is reset to the original value // If no matches on the current filter, reset to the last character pressed
// to move down the menu to the first item that starts with that character
if ( !match.length ) { if ( !match.length ) {
character = String.fromCharCode( event.keyCode ); character = String.fromCharCode( event.keyCode );
match = this.activeMenu.children( ".ui-menu-item" ).filter(function() { match = this.activeMenu.children( ".ui-menu-item" ).filter(function() {