git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8e59a99
)
Fix domManip leaks the first element when appending elements to multiple other elements.
author
Colin Snover
<github.com@zetafleet.com>
Sun, 9 Jan 2011 21:56:40 +0000
(15:56 -0600)
committer
Colin Snover
<github.com@zetafleet.com>
Sun, 9 Jan 2011 21:56:40 +0000
(15:56 -0600)
src/manipulation.js
patch
|
blob
|
history
diff --git
a/src/manipulation.js
b/src/manipulation.js
index
657aef7
..
206476c
100644
(file)
--- a/
src/manipulation.js
+++ b/
src/manipulation.js
@@
-346,7
+346,7
@@
jQuery.fn.extend({
table ?
root(this[i], first) :
this[i],
- i > 0 || results.cacheable || this.length > 1 ?
+ i > 0 || results.cacheable || (this.length > 1 && i > 0) ?
jQuery(fragment).clone(true)[0] :
fragment
);