aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.button.js
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2011-01-14 17:11:22 -0500
committerScott González <scott.gonzalez@gmail.com>2011-01-14 17:11:22 -0500
commit56c4c6aca992e1a441e6a2b498c911cf8d2221a4 (patch)
treeb6fe701dc8156a70f5f8066a8e8b06e2d28132aa /ui/jquery.ui.button.js
parentef1202dbe0af19b7929d6a31ef1ec66db7147889 (diff)
downloadjquery-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.button.js')
-rw-r--r--ui/jquery.ui.button.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/ui/jquery.ui.button.js b/ui/jquery.ui.button.js
index 78134e308..71d8cad12 100644
--- a/ui/jquery.ui.button.js
+++ b/ui/jquery.ui.button.js
@@ -218,7 +218,7 @@ $.widget( "ui.button", {
return this.buttonElement;
},
- destroy: function() {
+ _destroy: function() {
this.element
.removeClass( "ui-helper-hidden-accessible" );
this.buttonElement
@@ -230,8 +230,6 @@ $.widget( "ui.button", {
if ( !this.hasTitle ) {
this.buttonElement.removeAttr( "title" );
}
-
- $.Widget.prototype.destroy.call( this );
},
_setOption: function( key, value ) {