diff options
author | Richard Worth <rdworth@gmail.com> | 2010-03-08 16:35:24 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2010-03-08 16:35:24 +0000 |
commit | caa1786c618e3e1bb2e6c2c32b7722ae387094d9 (patch) | |
tree | f8c467ff5edf06ef218272f50aac32e179b7e8a1 /ui/jquery.ui.autocomplete.js | |
parent | d3a8c96428dcf62e35c4ac2850a20ea67b47de03 (diff) | |
download | jquery-ui-caa1786c618e3e1bb2e6c2c32b7722ae387094d9.tar.gz jquery-ui-caa1786c618e3e1bb2e6c2c32b7722ae387094d9.zip |
Fixed #5305 - Autocomplete: open event should trigger after the menu is opened since the name is not 'beforeopen'
Diffstat (limited to 'ui/jquery.ui.autocomplete.js')
-rw-r--r-- | ui/jquery.ui.autocomplete.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.autocomplete.js b/ui/jquery.ui.autocomplete.js index 3aa5d42dc..226b2b1b4 100644 --- a/ui/jquery.ui.autocomplete.js +++ b/ui/jquery.ui.autocomplete.js @@ -191,8 +191,8 @@ $.widget( "ui.autocomplete", { _response: function( content ) { if ( content.length ) { content = this._normalize( content ); - this._trigger( "open" ); this._suggest( content ); + this._trigger( "open" ); } else { this.close(); } |