diff options
author | jzaefferer <joern.zaefferer@gmail.com> | 2010-04-08 23:03:35 +0200 |
---|---|---|
committer | jzaefferer <joern.zaefferer@gmail.com> | 2010-04-08 23:03:35 +0200 |
commit | 9230b7263b90dfc3fcb4a309b549332dee6dcba4 (patch) | |
tree | 9e8ea3844386b841b10c521ff3fe5ab0c4c1e43b /ui/jquery.ui.widget.js | |
parent | 1a89b6ee2f9f02fd92d9ec3ee663b7dd237d3d15 (diff) | |
parent | ffc29bba052e4bc8b84e4c2e16036140148b6f9c (diff) | |
download | jquery-ui-9230b7263b90dfc3fcb4a309b549332dee6dcba4.tar.gz jquery-ui-9230b7263b90dfc3fcb4a309b549332dee6dcba4.zip |
Merge branch 'master' into tooltip
Diffstat (limited to 'ui/jquery.ui.widget.js')
-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 ); } |