Menu: Remove need to pass an event for next(), previous(), focus().

This commit is contained in:
Scott González 2012-05-18 15:34:47 -04:00
parent ba1776a513
commit 0adc6f5e17
2 changed files with 3 additions and 3 deletions

View File

@ -225,7 +225,7 @@ $.widget( "ui.autocomplete", {
var item = ui.item.data( "ui-autocomplete-item" ) || ui.item.data( "item.autocomplete" );
if ( false !== this._trigger( "focus", event, { item: item } ) ) {
// use value to match what will end up in the input, if it was a key event
if ( /^key/.test(event.originalEvent.type) ) {
if ( event.originalEvent && /^key/.test(event.originalEvent.type) ) {
this._value( item.value );
}
} else {
@ -468,7 +468,7 @@ $.widget( "ui.autocomplete", {
}, this.options.position ));
if ( this.options.autoFocus ) {
this.menu.next( new $.Event("mouseover") );
this.menu.next();
}
},

View File

@ -340,7 +340,7 @@ $.widget( "ui.menu", {
// highlight active parent menu item, if any
this.active.parent().closest( ".ui-menu-item" ).children( "a:first" ).addClass( "ui-state-active" );
if ( event.type === "keydown" ) {
if ( event && event.type === "keydown" ) {
this._close();
} else {
this.timer = this._delay(function() {