From: Doug Neiner Date: Thu, 12 May 2011 05:16:06 +0000 (-0400) Subject: Button: no longer calls _resetButton() after changing the disabled option. Fixed... X-Git-Tag: 1.9m5~33^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=8df834f68c4337cb6d128360c76a4621f050bd60;p=jquery-ui.git Button: no longer calls _resetButton() after changing the disabled option. Fixed #6242 - Button .enable() strange behavior on Webkit (Google Chrome, Safari) --- diff --git a/ui/jquery.ui.button.js b/ui/jquery.ui.button.js index 031ac2091..a120f884f 100644 --- a/ui/jquery.ui.button.js +++ b/ui/jquery.ui.button.js @@ -185,6 +185,7 @@ $.widget( "ui.button", { // $.Widget.prototype._setOptionDisabled so it's easy to proxy and can // be overridden by individual plugins this._setOption( "disabled", options.disabled ); + this._resetButton(); }, _determineButtonType: function() { @@ -250,6 +251,7 @@ $.widget( "ui.button", { } else { this.element.removeAttr( "disabled" ); } + return; } this._resetButton(); },