From: Scott González Date: Mon, 11 Oct 2010 12:51:54 +0000 (-0400) Subject: Autocomplete: Pass along some more original events. X-Git-Tag: 1.8.6~31 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=da13ea26fec7e21f9cd6566e99b7fd6688b5e96e;p=jquery-ui.git Autocomplete: Pass along some more original events. --- diff --git a/ui/jquery.ui.autocomplete.js b/ui/jquery.ui.autocomplete.js index 8b41a24dc..f9607aef7 100644 --- a/ui/jquery.ui.autocomplete.js +++ b/ui/jquery.ui.autocomplete.js @@ -157,7 +157,7 @@ $.widget( "ui.autocomplete", { .menu({ focus: function( event, ui ) { 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 if ( /^key/.test(event.originalEvent.type) ) { self.element.val( item.value ); @@ -266,7 +266,7 @@ $.widget( "ui.autocomplete", { } clearTimeout( this.closing ); - if ( this._trigger("search") === false ) { + if ( this._trigger( "search", event ) === false ) { return; }