aboutsummaryrefslogtreecommitdiffstats
path: root/src/manipulation.js
diff options
context:
space:
mode:
authorColin Snover <github.com@zetafleet.com>2010-12-16 01:29:06 -0600
committerColin Snover <github.com@zetafleet.com>2010-12-16 01:29:06 -0600
commit291b1edf444f30d9360a42c8d563e26eaf1a2ddb (patch)
tree098116f26e4477387a6264bf1cb98d4acfe952bc /src/manipulation.js
parent2defa4863a114358e03dbae1b10521555fd9cd9c (diff)
downloadjquery-291b1edf444f30d9360a42c8d563e26eaf1a2ddb.tar.gz
jquery-291b1edf444f30d9360a42c8d563e26eaf1a2ddb.zip
Address some code style issues in the clone fix.
Diffstat (limited to 'src/manipulation.js')
-rw-r--r--src/manipulation.js6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/manipulation.js b/src/manipulation.js
index 63203ef3b..7dea3493c 100644
--- a/src/manipulation.js
+++ b/src/manipulation.js
@@ -415,17 +415,15 @@ function cloneFixAttributes(src, dest) {
// attribute) to identify the type of content to display
if ( nodeName === "object" ) {
dest.outerHTML = src.outerHTML;
- }
// IE6-8 fails to persist the checked state of a cloned checkbox
// or radio button
- else if ( nodeName === "input" && src.checked ) {
+ } else if ( nodeName === "input" && src.checked ) {
dest.defaultChecked = dest.checked = src.checked;
- }
// IE6-8 fails to return the selected option to the default selected
// state when cloning options
- else if ( nodeName === "option" ) {
+ } else if ( nodeName === "option" ) {
dest.selected = src.defaultSelected;
}