aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.button.js
diff options
context:
space:
mode:
authorTJ VanToll <tj.vantoll@gmail.com>2012-10-16 13:20:55 -0400
committerScott González <scott.gonzalez@gmail.com>2012-10-16 23:09:26 -0400
commit5e24a1ce4b337830b37511305a6ddefe797fd40c (patch)
treeaf80b9c56a0e71e8e125b3061413b87a54ced01d /ui/jquery.ui.button.js
parent8ce35198daf261370e2962f4c429bf4fa998b2df (diff)
downloadjquery-ui-5e24a1ce4b337830b37511305a6ddefe797fd40c.tar.gz
jquery-ui-5e24a1ce4b337830b37511305a6ddefe797fd40c.zip
Button: Check for ui-state-disabled during refresh. Fixes #8237 - Button: Anchor tags cannot be disabled within buttonset.
Diffstat (limited to 'ui/jquery.ui.button.js')
-rw-r--r--ui/jquery.ui.button.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.button.js b/ui/jquery.ui.button.js
index 5ae526488..f253464df 100644
--- a/ui/jquery.ui.button.js
+++ b/ui/jquery.ui.button.js
@@ -282,7 +282,7 @@ $.widget( "ui.button", {
},
refresh: function() {
- var isDisabled = this.element.is( ":disabled" );
+ var isDisabled = this.element.is( ":disabled" ) || this.element.hasClass( "ui-button-disabled" );
if ( isDisabled !== this.options.disabled ) {
this._setOption( "disabled", isDisabled );
}