diff options
author | Oleg <markelog@gmail.com> | 2012-12-23 21:11:40 +0400 |
---|---|---|
committer | Oleg <markelog@gmail.com> | 2012-12-24 03:04:30 +0400 |
commit | f66c33d751879d139465417291f8da2ff266631a (patch) | |
tree | b06e1e7e0bcb48e78228ba9045f36953fbb31559 | |
parent | 87a7690afa8c56d2aee2f902b49e3932bb3a2449 (diff) | |
download | jquery-f66c33d751879d139465417291f8da2ff266631a.tar.gz jquery-f66c33d751879d139465417291f8da2ff266631a.zip |
Remove fix for #9587
-rw-r--r-- | src/manipulation.js | 5 |
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 ] ); } } |