diff options
author | John Resig <jeresig@gmail.com> | 2006-08-31 04:27:30 +0000 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2006-08-31 04:27:30 +0000 |
commit | 3f47d3b8f5b2623a3bf289ad4446d0eafd12413d (patch) | |
tree | 4365875cba120936e144d5d7fab1593b81e68abf /src | |
parent | b27be158f2dc1aab317535f081b18f367fe6175e (diff) | |
download | jquery-3f47d3b8f5b2623a3bf289ad4446d0eafd12413d.tar.gz jquery-3f47d3b8f5b2623a3bf289ad4446d0eafd12413d.zip |
Fixed issue with .attr( "disabled", false ) not working properly.
Diffstat (limited to 'src')
-rw-r--r-- | src/jquery/jquery.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index fc3d5515b..28f4825e8 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -1268,7 +1268,8 @@ jQuery.extend({ "float": "cssFloat", innerHTML: "innerHTML", className: "className", - value: "value" + value: "value", + disabled: "disabled" }; if ( fix[name] ) { |