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:
44590a5
)
Added Klaus' fix for accidental DOM node catches (Ticket #3).
author
John Resig
<jeresig@gmail.com>
Fri, 16 Jun 2006 01:51:15 +0000
(
01:51
+0000)
committer
John Resig
<jeresig@gmail.com>
Fri, 16 Jun 2006 01:51:15 +0000
(
01:51
+0000)
jquery/jquery.js
patch
|
blob
|
history
diff --git
a/jquery/jquery.js
b/jquery/jquery.js
index
a06e81c
..
37c2b3f
100644
(file)
--- a/
jquery/jquery.js
+++ b/
jquery/jquery.js
@@
-430,7
+430,7
@@
$.clean = function(a) {
for ( var j = 0; j < div.childNodes.length; j++ ) {
r[r.length] = div.childNodes[j];
}
- } else if ( a[i].length ) {
+ } else if ( a[i].length && !a[i].nodeType ) {
for ( var k = 0; k < a[i].length; k++ ) {
r[r.length] = a[i][k];
}