mirror of
https://github.com/jquery/jquery.git
synced 2026-04-20 03:01:22 -04:00
Added fix for bug #1567 - uppercase nodeName test in .add().
This commit is contained in:
@@ -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] )
|
||||
);
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user