mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Menu: Remove need to pass an event for next(), previous(), focus().
This commit is contained in:
parent
ba1776a513
commit
0adc6f5e17
4
ui/jquery.ui.autocomplete.js
vendored
4
ui/jquery.ui.autocomplete.js
vendored
@ -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();
|
||||
}
|
||||
},
|
||||
|
||||
|
2
ui/jquery.ui.menu.js
vendored
2
ui/jquery.ui.menu.js
vendored
@ -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() {
|
||||
|
Loading…
Reference in New Issue
Block a user