From: Oleg Date: Sun, 23 Dec 2012 17:11:40 +0000 (+0400) Subject: Remove fix for #9587 X-Git-Tag: 2.0.0b1~59^2~18 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f66c33d751879d139465417291f8da2ff266631a;p=jquery.git Remove fix for #9587 --- 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 ] ); } }