Fix for #910
This commit is contained in:
parent
b2c2ab2bb7
commit
b15ae79a38
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
=== 1.1.2 ===
|
=== 1.1.2 ===
|
||||||
|
|
||||||
|
* Fixed DOM Manipulations for form elements.
|
||||||
* Fixed jQuery.isFunction to return false on nodes.
|
* Fixed jQuery.isFunction to return false on nodes.
|
||||||
* Fixed jQuery.className.has, escaping regex characters in className (for metadata)
|
* Fixed jQuery.className.has, escaping regex characters in className (for metadata)
|
||||||
* Fixed an issue in IE where an event on a cloned element is fired during a .clone() inside of an event handler.
|
* Fixed an issue in IE where an event on a cloned element is fired during a .clone() inside of an event handler.
|
||||||
|
|
4
src/jquery/jquery.js
vendored
4
src/jquery/jquery.js
vendored
|
@ -1471,10 +1471,10 @@ jQuery.extend({
|
||||||
arg = div.childNodes;
|
arg = div.childNodes;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( arg.length === 0 )
|
if ( arg.length === 0 && !jQuery.nodeName(arg, "form") )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if ( arg[0] == undefined )
|
if ( arg[0] == undefined || jQuery.nodeName(arg, "form") )
|
||||||
r.push( arg );
|
r.push( arg );
|
||||||
else
|
else
|
||||||
r = jQuery.merge( r, arg );
|
r = jQuery.merge( r, arg );
|
||||||
|
|
Loading…
Reference in a new issue