aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorOleg <markelog@gmail.com>2012-12-23 21:11:40 +0400
committerOleg <markelog@gmail.com>2012-12-24 03:04:30 +0400
commitf66c33d751879d139465417291f8da2ff266631a (patch)
treeb06e1e7e0bcb48e78228ba9045f36953fbb31559 /src
parent87a7690afa8c56d2aee2f902b49e3932bb3a2449 (diff)
downloadjquery-f66c33d751879d139465417291f8da2ff266631a.tar.gz
jquery-f66c33d751879d139465417291f8da2ff266631a.zip
Remove fix for #9587
Diffstat (limited to 'src')
-rw-r--r--src/manipulation.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/manipulation.js b/src/manipulation.js
index 85807a550..7b3676a4a 100644
--- a/src/manipulation.js
+++ b/src/manipulation.js
@@ -386,10 +386,7 @@ jQuery.extend({
srcElements = getAll( elem );
for ( i = 0; ( node = srcElements[ i ] ) != null; ++i ) {
- // Ensure that the destination node is not null; Fixes #9587
- if ( destElements[ i ] ) {
- fixCloneNodeIssues( node, destElements[ i ] );
- }
+ fixCloneNodeIssues( node, destElements[ i ] );
}
}