mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Address some code style issues in the clone fix.
This commit is contained in:
parent
2defa4863a
commit
291b1edf44
@ -415,17 +415,15 @@ function cloneFixAttributes(src, dest) {
|
|||||||
// attribute) to identify the type of content to display
|
// attribute) to identify the type of content to display
|
||||||
if ( nodeName === "object" ) {
|
if ( nodeName === "object" ) {
|
||||||
dest.outerHTML = src.outerHTML;
|
dest.outerHTML = src.outerHTML;
|
||||||
}
|
|
||||||
|
|
||||||
// IE6-8 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
|
// or radio button
|
||||||
else if ( nodeName === "input" && src.checked ) {
|
} else if ( nodeName === "input" && src.checked ) {
|
||||||
dest.defaultChecked = dest.checked = src.checked;
|
dest.defaultChecked = dest.checked = src.checked;
|
||||||
}
|
|
||||||
|
|
||||||
// IE6-8 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
|
// state when cloning options
|
||||||
else if ( nodeName === "option" ) {
|
} else if ( nodeName === "option" ) {
|
||||||
dest.selected = src.defaultSelected;
|
dest.selected = src.defaultSelected;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user