Fix for bug #962.
This commit is contained in:
parent
6b729ff798
commit
9791855ea9
2 changed files with 7 additions and 3 deletions
6
src/jquery/coreTest.js
vendored
6
src/jquery/coreTest.js
vendored
|
@ -213,7 +213,7 @@ test("wrap(String|Element)", function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
test("append(String|Element|Array<Element>|jQuery)", function() {
|
test("append(String|Element|Array<Element>|jQuery)", function() {
|
||||||
expect(10);
|
expect(11);
|
||||||
var defaultText = 'Try them out:'
|
var defaultText = 'Try them out:'
|
||||||
var result = $('#first').append('<b>buga</b>');
|
var result = $('#first').append('<b>buga</b>');
|
||||||
ok( result.text() == defaultText + 'buga', 'Check if text appending works' );
|
ok( result.text() == defaultText + 'buga', 'Check if text appending works' );
|
||||||
|
@ -238,6 +238,10 @@ test("append(String|Element|Array<Element>|jQuery)", function() {
|
||||||
$("#sap").append( 5 );
|
$("#sap").append( 5 );
|
||||||
ok( $("#sap")[0].innerHTML.match( /5$/ ), "Check for appending a number" );
|
ok( $("#sap")[0].innerHTML.match( /5$/ ), "Check for appending a number" );
|
||||||
|
|
||||||
|
reset();
|
||||||
|
$("#sap").append( " text with spaces " );
|
||||||
|
ok( $("#sap")[0].innerHTML.match(/ text with spaces $/), "Check for appending text with spaces" );
|
||||||
|
|
||||||
reset();
|
reset();
|
||||||
ok( $("#sap").append([]), "Check for appending an empty array." );
|
ok( $("#sap").append([]), "Check for appending an empty array." );
|
||||||
ok( $("#sap").append(""), "Check for appending an empty string." );
|
ok( $("#sap").append(""), "Check for appending an empty string." );
|
||||||
|
|
2
src/jquery/jquery.js
vendored
2
src/jquery/jquery.js
vendored
|
@ -1472,7 +1472,7 @@ jQuery.extend({
|
||||||
[0,"",""];
|
[0,"",""];
|
||||||
|
|
||||||
// Go to html and back, then peel off extra wrappers
|
// Go to html and back, then peel off extra wrappers
|
||||||
div.innerHTML = wrap[1] + s + wrap[2];
|
div.innerHTML = wrap[1] + arg + wrap[2];
|
||||||
|
|
||||||
// Move to the right depth
|
// Move to the right depth
|
||||||
while ( wrap[0]-- )
|
while ( wrap[0]-- )
|
||||||
|
|
Loading…
Reference in a new issue