diff options
Diffstat (limited to 'ui/jquery.ui.button.js')
-rw-r--r-- | ui/jquery.ui.button.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ui/jquery.ui.button.js b/ui/jquery.ui.button.js index 62f7a02f5..9adf0c193 100644 --- a/ui/jquery.ui.button.js +++ b/ui/jquery.ui.button.js @@ -141,6 +141,10 @@ $.widget( "ui.button", { } } + // TODO: pull out $.Widget's handling for the disabled option into + // $.Widget.prototype._setOptionDisabled so it's easy to proxy and can + // be overridden by individual plugins + $.Widget.prototype._setOption.call( this, "disabled", options.disabled ); this._resetButton(); }, |