diff options
author | jzaefferer <joern.zaefferer@gmail.com> | 2011-02-24 12:05:20 +0100 |
---|---|---|
committer | jzaefferer <joern.zaefferer@gmail.com> | 2011-02-24 12:05:20 +0100 |
commit | 38cfcfffe92f2ac2572ab7ebc51e860de9312baf (patch) | |
tree | 8c03b1d8881627a041c1d20f134351b300f970da /ui/jquery.ui.autocomplete.js | |
parent | 5c687be331d3110ece3b2417c021485950f87ff9 (diff) | |
download | jquery-ui-38cfcfffe92f2ac2572ab7ebc51e860de9312baf.tar.gz jquery-ui-38cfcfffe92f2ac2572ab7ebc51e860de9312baf.zip |
Menu: Update autocomplete to use deactivate and check for focus class
Diffstat (limited to 'ui/jquery.ui.autocomplete.js')
-rw-r--r-- | ui/jquery.ui.autocomplete.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ui/jquery.ui.autocomplete.js b/ui/jquery.ui.autocomplete.js index 32959b3c5..c83f042c0 100644 --- a/ui/jquery.ui.autocomplete.js +++ b/ui/jquery.ui.autocomplete.js @@ -323,7 +323,7 @@ $.widget( "ui.autocomplete", { clearTimeout( this.closing ); if ( this.menu.element.is(":visible") ) { this.menu.element.hide(); - this.menu.deactivate(); + this.menu.blur(); this._trigger( "close", event ); } }, @@ -358,8 +358,8 @@ $.widget( "ui.autocomplete", { .empty() .zIndex( this.element.zIndex() + 1 ); this._renderMenu( ul, items ); - // TODO refresh should check if the active item is still in the dom, removing the need for a manual deactivate - this.menu.deactivate(); + // TODO refresh should check if the active item is still in the dom, removing the need for a manual blur + this.menu.blur(); this.menu.refresh(); // size and position menu @@ -400,7 +400,7 @@ $.widget( "ui.autocomplete", { if ( this.menu.first() && /^previous/.test(direction) || this.menu.last() && /^next/.test(direction) ) { this._value( this.term ); - this.menu.deactivate(); + this.menu.blur(); return; } this.menu[ direction ]( event ); |