diff options
author | jeresig <jeresig@gmail.com> | 2011-04-10 15:49:17 -0400 |
---|---|---|
committer | jeresig <jeresig@gmail.com> | 2011-04-10 15:49:17 -0400 |
commit | 7fb95ebe8f1b79220947d127a5d2b8bf56143622 (patch) | |
tree | 447e0ab66d73af10f902fa14766d388514affc31 /src/support.js | |
parent | 9ed5c774e4222a4f100b5a06e5f90327aa2d4b18 (diff) | |
parent | b92d2f0bc96d65c83252fa3033c37b92eb32d442 (diff) | |
download | jquery-7fb95ebe8f1b79220947d127a5d2b8bf56143622.tar.gz jquery-7fb95ebe8f1b79220947d127a5d2b8bf56143622.zip |
Merge branch 'attrhooks.1.6'
Conflicts:
src/core.js
src/support.js
Diffstat (limited to 'src/support.js')
-rw-r--r-- | src/support.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/support.js b/src/support.js index 50ae6dfd7..10696aabd 100644 --- a/src/support.js +++ b/src/support.js @@ -71,6 +71,9 @@ jQuery.support = (function() { // Make sure that a selected-by-default option has a working selected property. // (WebKit defaults to false instead of true, IE too, if it's in an optgroup) optSelected: opt.selected, + + // Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7) + getSetAttribute: div.className !== "t", // Will be defined later submitBubbles: true, |