Change destroy to _destroy and remove calls to $.Widget.prototype.destroy in widgets with simple destroy methods.

This commit is contained in:
Scott González 2011-01-14 17:11:22 -05:00
parent ef1202dbe0
commit 56c4c6aca9
7 changed files with 7 additions and 20 deletions

View File

@ -140,7 +140,7 @@ $.widget( "ui.accordion", {
this.element.removeClass( "ui-accordion-icons" );
},
destroy: function() {
_destroy: function() {
var options = this.options;
this.element
@ -164,8 +164,6 @@ $.widget( "ui.accordion", {
if ( options.heightStyle !== "content" ) {
contents.css( "height", "" );
}
return $.Widget.prototype.destroy.call( this );
},
_setOption: function( key, value ) {

View File

@ -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 ) {

View File

@ -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 ) {

View File

@ -179,7 +179,7 @@ $.widget("ui.dialog", {
}
},
destroy: function() {
_destroy: function() {
var self = this;
if ( self.overlay ) {
@ -195,9 +195,6 @@ $.widget("ui.dialog", {
if ( self.originalTitle ) {
self.element.attr( "title", self.originalTitle );
}
$.Widget.prototype.destroy.call( this );
return self;
},
widget: function() {

View File

@ -93,9 +93,7 @@ $.widget("ui.menu", {
});
},
destroy: function() {
$.Widget.prototype.destroy.apply( this, arguments );
_destroy: function() {
this.element
.removeClass( "ui-menu ui-widget ui-widget-content ui-corner-all" )
.removeAttr( "tabIndex" )

View File

@ -38,7 +38,7 @@ $.widget( "ui.progressbar", {
this._refreshValue();
},
destroy: function() {
_destroy: function() {
this.element
.removeClass( "ui-progressbar ui-widget ui-widget-content ui-corner-all" )
.removeAttr( "role" )
@ -47,8 +47,6 @@ $.widget( "ui.progressbar", {
.removeAttr( "aria-valuenow" );
this.valueDiv.remove();
$.Widget.prototype.destroy.apply( this, arguments );
},
value: function( newValue ) {

View File

@ -58,9 +58,8 @@ $.widget("ui.tooltip", {
this.options.disabled = true;
},
destroy: function() {
_destroy: function() {
this.tooltip.remove();
$.Widget.prototype.destroy.apply(this, arguments);
},
widget: function() {