Index: trunk/extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.js |
— | — | @@ -534,7 +534,7 @@ |
535 | 535 | for ( var i = 0; i< headings.length; i++ ) { |
536 | 536 | html += '<th>' + $.wikiEditor.autoMsg( headings[i], ['html', 'text'] ) + '</th>'; |
537 | 537 | } |
538 | | - return html; |
| 538 | + return html + '</tr>'; |
539 | 539 | }, |
540 | 540 | buildRow : function( context, row ) { |
541 | 541 | var html = '<tr>'; |
— | — | @@ -542,8 +542,7 @@ |
543 | 543 | html += '<td class="cell cell-' + cell + '" valign="top"><span>' + |
544 | 544 | $.wikiEditor.autoMsg( row[cell], ['html', 'text'] ) + '</span></td>'; |
545 | 545 | } |
546 | | - html += '</tr>'; |
547 | | - return html; |
| 546 | + return html + '</tr>'; |
548 | 547 | }, |
549 | 548 | buildCharacter : function( character, actions ) { |
550 | 549 | if ( typeof character == 'string' ) { |