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:
b8d0c07
)
Make sure that a DOM node isn't getting passed through (as is the case in IE, it...
author
jeresig
<jeresig@gmail.com>
Wed, 2 Dec 2009 19:59:19 +0000
(14:59 -0500)
committer
jeresig
<jeresig@gmail.com>
Wed, 2 Dec 2009 19:59:19 +0000
(14:59 -0500)
src/core.js
patch
|
blob
|
history
diff --git
a/src/core.js
b/src/core.js
index
5da31e6
..
e2d3b60
100644
(file)
--- a/
src/core.js
+++ b/
src/core.js
@@
-315,7
+315,7
@@
jQuery.extend({
},
isObjectLiteral: function( obj ) {
- if ( toString.call(obj) !== "[object Object]" ) {
+ if ( toString.call(obj) !== "[object Object]" || typeof obj.nodeType === "number" ) {
return false;
}