diff options
author | Scott González <scott.gonzalez@gmail.com> | 2011-01-14 17:11:22 -0500 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2011-01-14 17:11:22 -0500 |
commit | 56c4c6aca992e1a441e6a2b498c911cf8d2221a4 (patch) | |
tree | b6fe701dc8156a70f5f8066a8e8b06e2d28132aa /ui/jquery.ui.autocomplete.js | |
parent | ef1202dbe0af19b7929d6a31ef1ec66db7147889 (diff) | |
download | jquery-ui-56c4c6aca992e1a441e6a2b498c911cf8d2221a4.tar.gz jquery-ui-56c4c6aca992e1a441e6a2b498c911cf8d2221a4.zip |
Change destroy to _destroy and remove calls to $.Widget.prototype.destroy in widgets with simple destroy methods.
Diffstat (limited to 'ui/jquery.ui.autocomplete.js')
-rw-r--r-- | ui/jquery.ui.autocomplete.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ui/jquery.ui.autocomplete.js b/ui/jquery.ui.autocomplete.js index f48dc032a..0413306ce 100644 --- a/ui/jquery.ui.autocomplete.js +++ b/ui/jquery.ui.autocomplete.js @@ -214,7 +214,7 @@ $.widget( "ui.autocomplete", { } }, - destroy: function() { + _destroy: function() { this.element .removeClass( "ui-autocomplete-input" ) .removeAttr( "autocomplete" ) @@ -222,7 +222,6 @@ $.widget( "ui.autocomplete", { .removeAttr( "aria-autocomplete" ) .removeAttr( "aria-haspopup" ); this.menu.element.remove(); - $.Widget.prototype.destroy.call( this ); }, _setOption: function( key, value ) { |