]> source.dussan.org Git - jquery.git/commitdiff
Fix for bug #962.
authorJohn Resig <jeresig@gmail.com>
Thu, 1 Mar 2007 05:16:34 +0000 (05:16 +0000)
committerJohn Resig <jeresig@gmail.com>
Thu, 1 Mar 2007 05:16:34 +0000 (05:16 +0000)
src/jquery/coreTest.js
src/jquery/jquery.js

index 25cb69b307a378c287cfc226433865639bd749b3..c20d4068d7dd690d924fa753b1f30e9b10c9fc52 100644 (file)
@@ -213,7 +213,7 @@ test("wrap(String|Element)", function() {
 });\r
 \r
 test("append(String|Element|Array&lt;Element&gt;|jQuery)", function() {\r
-       expect(10);\r
+       expect(11);\r
        var defaultText = 'Try them out:'\r
        var result = $('#first').append('<b>buga</b>');\r
        ok( result.text() == defaultText + 'buga', 'Check if text appending works' );\r
@@ -238,6 +238,10 @@ test("append(String|Element|Array&lt;Element&gt;|jQuery)", function() {
        $("#sap").append( 5 );\r
        ok( $("#sap")[0].innerHTML.match( /5$/ ), "Check for appending a number" );\r
 \r
+       reset();\r
+       $("#sap").append( " text with spaces " );\r
+       ok( $("#sap")[0].innerHTML.match(/ text with spaces $/), "Check for appending text with spaces" );\r
+\r
        reset();\r
        ok( $("#sap").append([]), "Check for appending an empty array." );\r
        ok( $("#sap").append(""), "Check for appending an empty string." );\r
@@ -698,4 +702,4 @@ test("click() context", function() {
            //console.log( close[0]); // it's the <a> and not a <span> element\r
            return false;\r
        }).click();\r
-});
\ No newline at end of file
+});\r
index 5780ba76b38170727434ff4e135445aea9eb432e..48740377ce0c991a39a81f318ee57ec8a433f986 100644 (file)
@@ -1472,7 +1472,7 @@ jQuery.extend({
                                        [0,"",""];
 
                                // 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
                                while ( wrap[0]-- )