diff options
author | jzaefferer <joern.zaefferer@gmail.com> | 2010-03-29 16:47:46 +0200 |
---|---|---|
committer | jzaefferer <joern.zaefferer@gmail.com> | 2010-03-29 16:47:46 +0200 |
commit | df2619e0acc79d65b0b42f733ad2a894a91b0d41 (patch) | |
tree | ba51cb1728ea2742b19f106efcaf4710880f18a3 | |
parent | cac005aca162fdff6fc52f37efbdb0d607adff50 (diff) | |
parent | 4657bd85bc04e01d9f9b9637fe6aaf1bc66113fb (diff) | |
download | jquery-ui-df2619e0acc79d65b0b42f733ad2a894a91b0d41.tar.gz jquery-ui-df2619e0acc79d65b0b42f733ad2a894a91b0d41.zip |
Merge branch 'master' of github.com:jquery/jquery-ui
-rw-r--r-- | ui/jquery.ui.widget.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/jquery.ui.widget.js b/ui/jquery.ui.widget.js index 49067449d..a9829d2e5 100644 --- a/ui/jquery.ui.widget.js +++ b/ui/jquery.ui.widget.js @@ -155,7 +155,7 @@ $.Widget.prototype = { .removeAttr( "aria-disabled" ) .removeClass( this.widgetBaseClass + "-disabled " + - this.namespace + "-state-disabled" ); + "ui-state-disabled" ); }, widget: function() { @@ -192,7 +192,7 @@ $.Widget.prototype = { this.widget() [ value ? "addClass" : "removeClass"]( this.widgetBaseClass + "-disabled" + " " + - this.namespace + "-state-disabled" ) + "ui-state-disabled" ) .attr( "aria-disabled", value ); } |