Fix for #910
This commit is contained in:
parent
980b5d72db
commit
ecaa4d4570
7
src/jquery/coreTest.js
vendored
7
src/jquery/coreTest.js
vendored
|
@ -210,7 +210,7 @@ test("wrap(String|Element)", function() {
|
|||
});
|
||||
|
||||
test("append(String|Element|Array<Element>|jQuery)", function() {
|
||||
expect(9);
|
||||
expect(10);
|
||||
var defaultText = 'Try them out:'
|
||||
var result = $('#first').append('<b>buga</b>');
|
||||
ok( result.text() == defaultText + 'buga', 'Check if text appending works' );
|
||||
|
@ -239,6 +239,11 @@ test("append(String|Element|Array<Element>|jQuery)", function() {
|
|||
ok( $("#sap").append([]), "Check for appending an empty array." );
|
||||
ok( $("#sap").append(""), "Check for appending an empty string." );
|
||||
ok( $("#sap").append(document.getElementsByTagName("foo")), "Check for appending an empty nodelist." );
|
||||
|
||||
reset();
|
||||
$("#sap").append(document.getElementById('form'));
|
||||
ok( $("#sap>form").size() == 1, "Check for appending a form" );
|
||||
|
||||
});
|
||||
|
||||
test("appendTo(String|Element|Array<Element>|jQuery)", function() {
|
||||
|
|
2
src/jquery/jquery.js
vendored
2
src/jquery/jquery.js
vendored
|
@ -1470,7 +1470,7 @@ jQuery.extend({
|
|||
if ( arg.length === 0 )
|
||||
return;
|
||||
|
||||
if ( arg[0] == undefined )
|
||||
if ( arg[0] == undefined || jQuery.nodeName(arg,"form") )
|
||||
r.push( arg );
|
||||
else
|
||||
r = jQuery.merge( r, arg );
|
||||
|
|
Loading…
Reference in a new issue