Simplify bookend creation

(imported from commit 8faf260037b7e0508d9e4acea24687ebc06ea0ef)
This commit is contained in:
Keegan McAllister 2012-09-20 00:08:46 -04:00
parent 7d894d8dd1
commit 81ff352ac3
1 changed files with 1 additions and 1 deletions

View File

@ -633,7 +633,7 @@ function add_to_tables(zephyr, parent, table) {
if (parent !== undefined) {
// add a space to the table, but not if we have no parent because
// we don't want a bookend as the first element.
table.append($('<tr />').append($('<td />')).append($('<td />')).append($('<td />').addClass('bookend')));
table.append('<tr><td /><td /><td class="bookend" /></tr>');
}
}