aboutsummaryrefslogtreecommitdiffstats
path: root/src/manipulation.js
diff options
context:
space:
mode:
authorColin Snover <github.com@zetafleet.com>2010-12-12 20:01:47 -0600
committerColin Snover <github.com@zetafleet.com>2010-12-12 20:01:47 -0600
commitc9c9057c4d4097767ca181bdb4bb27d6fd2d8fbd (patch)
treeccc297ecba8352b07f46c78197eec305ca863a77 /src/manipulation.js
parent1a3fd3329dde3c61dc4b2b14792fb9a61b637893 (diff)
downloadjquery-c9c9057c4d4097767ca181bdb4bb27d6fd2d8fbd.tar.gz
jquery-c9c9057c4d4097767ca181bdb4bb27d6fd2d8fbd.zip
More specific version numbers.
Diffstat (limited to 'src/manipulation.js')
-rw-r--r--src/manipulation.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/manipulation.js b/src/manipulation.js
index 24409d2c5..63203ef3b 100644
--- a/src/manipulation.js
+++ b/src/manipulation.js
@@ -417,13 +417,13 @@ function cloneFixAttributes(src, dest) {
dest.outerHTML = src.outerHTML;
}
- // IE6-? fails to persist the checked state of a cloned checkbox
+ // IE6-8 fails to persist the checked state of a cloned checkbox
// or radio button
else if ( nodeName === "input" && src.checked ) {
dest.defaultChecked = dest.checked = src.checked;
}
- // IE6-? fails to return the selected option to the default selected
+ // IE6-8 fails to return the selected option to the default selected
// state when cloning options
else if ( nodeName === "option" ) {
dest.selected = src.defaultSelected;