Skip to content

Commit

Permalink
Address some code style issues in the clone fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
csnover committed Dec 16, 2010
1 parent 2defa48 commit 291b1ed
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/manipulation.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 291b1ed

Please sign in to comment.