Added fix for bug #1567 - uppercase nodeName test in .add().
This commit is contained in:
parent
f6a2e1734f
commit
e0c6e4ef98
|
@ -282,7 +282,7 @@ jQuery.fn = jQuery.prototype = {
|
|||
this.get(),
|
||||
t.constructor == String ?
|
||||
jQuery(t).get() :
|
||||
t.length != undefined && (!t.nodeName || t.nodeName == "FORM") ?
|
||||
t.length != undefined && (!t.nodeName || jQuery.nodeName(t, "form")) ?
|
||||
t : [t] )
|
||||
);
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue