mirror of
https://github.com/jquery/jquery.git
synced 2026-02-06 06:55:27 -05:00
No need to use .call() anymore since we switched from .apply() for appendTo, etc. Thanks to Robert in 2c08004f6d for the heads-up.
This commit is contained in:
@@ -442,7 +442,7 @@ jQuery.each({
|
||||
} else {
|
||||
for ( var i = 0, l = insert.length; i < l; i++ ) {
|
||||
var elems = (i > 0 ? this.clone(true) : this).get();
|
||||
jQuery.fn[ original ].call( jQuery(insert[i]), elems );
|
||||
jQuery( insert[i] )[ original ]( elems );
|
||||
ret = ret.concat( elems );
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user