Fixed a bug with .append() and <td>/<tr>.
authorJohn Resig <jeresig@gmail.com>
Wed, 10 Jan 2007 07:00:02 +0000 (07:00 +0000)
committerJohn Resig <jeresig@gmail.com>
Wed, 10 Jan 2007 07:00:02 +0000 (07:00 +0000)
src/jquery/jquery.js

index 4059807..f927a35 100644 (file)
@@ -1355,16 +1355,17 @@ jQuery.extend({
 
                                var wrap =
                                         // option or optgroup
-                                       !s.indexOf("<opt") && [1, "<select>", "</select>"] ||
+                                       !s.indexOf("<opt") &&
+                                       [1, "<select>", "</select>"] ||
                                        
-                                       !s.indexOf("<thead") || !s.indexOf("<tbody") || !s.indexOf("<tfoot") &&
+                                       (!s.indexOf("<thead") || !s.indexOf("<tbody") || !s.indexOf("<tfoot")) &&
                                        [1, "<table>", "</table>"] ||
                                        
                                        !s.indexOf("<tr") &&
                                        [2, "<table><tbody>", "</tbody></table>"] ||
                                        
                                        // <thead> matched above
-                                       !s.indexOf("<td") || !s.indexOf("<th") &&
+                                       (!s.indexOf("<td") || !s.indexOf("<th")) &&
                                        [3, "<table><tbody><tr>", "</tr></tbody></table>"] ||
                                        
                                        [0,"",""];
@@ -1400,6 +1401,7 @@ jQuery.extend({
                                r.push( arg );
                        else
                                r = jQuery.merge( r, arg );
+
                }
 
                return r;