Updated widgets to use new methods from $.Widget.

This commit is contained in:
Scott González 2011-01-15 06:34:07 -05:00
parent 56c4c6aca9
commit e0b52831fc
6 changed files with 10 additions and 12 deletions

View File

@ -173,7 +173,7 @@ $.widget( "ui.accordion", {
return;
}
$.Widget.prototype._setOption.apply( this, arguments );
this._super( "_setOption", key, value );
if ( key == "icons" ) {
this._destroyIcons();

View File

@ -225,7 +225,7 @@ $.widget( "ui.autocomplete", {
},
_setOption: function( key, value ) {
$.Widget.prototype._setOption.apply( this, arguments );
this._super( "_setOption", key, value );
if ( key === "source" ) {
this._initSource();
}

View File

@ -233,7 +233,7 @@ $.widget( "ui.button", {
},
_setOption: function( key, value ) {
$.Widget.prototype._setOption.apply( this, arguments );
this._super( "_setOption", key, value );
if ( key === "disabled" ) {
if ( value ) {
this.element.attr( "disabled", true );
@ -330,7 +330,7 @@ $.widget( "ui.buttonset", {
this.buttons.button( "option", key, value );
}
$.Widget.prototype._setOption.apply( this, arguments );
this._super( "_setOption", key, value );
},
refresh: function() {
@ -354,7 +354,7 @@ $.widget( "ui.buttonset", {
.end();
},
destroy: function() {
_destroy: function() {
this.element.removeClass( "ui-buttonset" );
this.buttons
.map(function() {
@ -363,8 +363,6 @@ $.widget( "ui.buttonset", {
.removeClass( "ui-corner-left ui-corner-right" )
.end()
.button( "destroy" );
$.Widget.prototype.destroy.call( this );
}
});

View File

@ -600,7 +600,7 @@ $.widget("ui.dialog", {
break;
}
$.Widget.prototype._setOption.apply( self, arguments );
this._super( "_setOption", key, value );
},
_size: function() {

View File

@ -67,7 +67,7 @@ $.widget( "ui.progressbar", {
}
}
$.Widget.prototype._setOption.apply( this, arguments );
this._super( "_setOption", key, value );
},
_value: function() {

View File

@ -283,11 +283,11 @@ $.widget('ui.spinner', {
this.buttons.button("enable");
}
}
$.Widget.prototype._setOption.call( this, key, value );
this._super( "_setOption", key, value );
},
_setOptions: function( options ) {
$.Widget.prototype._setOptions.call( this, options );
this._super( "_setOptions", options );
if ( "value" in options ) {
this._format( this.options.value );
}
@ -325,7 +325,7 @@ $.widget('ui.spinner', {
.removeClass('ui-spinner-input')
.removeAttr('disabled')
.removeAttr('autocomplete');
$.Widget.prototype.destroy.call( this );
this._super( "destroy" );
this.uiSpinner.replaceWith(this.element);
},