Autocomplete: Pass along some more original events.

This commit is contained in:
Scott González 2010-10-11 08:51:54 -04:00
parent 03efae2887
commit da13ea26fe

View File

@ -157,7 +157,7 @@ $.widget( "ui.autocomplete", {
.menu({ .menu({
focus: function( event, ui ) { focus: function( event, ui ) {
var item = ui.item.data( "item.autocomplete" ); var item = ui.item.data( "item.autocomplete" );
if ( false !== self._trigger( "focus", null, { item: item } ) ) { if ( false !== self._trigger( "focus", event, { item: item } ) ) {
// use value to match what will end up in the input, if it was a key event // use value to match what will end up in the input, if it was a key event
if ( /^key/.test(event.originalEvent.type) ) { if ( /^key/.test(event.originalEvent.type) ) {
self.element.val( item.value ); self.element.val( item.value );
@ -266,7 +266,7 @@ $.widget( "ui.autocomplete", {
} }
clearTimeout( this.closing ); clearTimeout( this.closing );
if ( this._trigger("search") === false ) { if ( this._trigger( "search", event ) === false ) {
return; return;
} }