From 81ff352ac3fb570c98aeba187f1ecee10e6cf3f4 Mon Sep 17 00:00:00 2001 From: Keegan McAllister Date: Thu, 20 Sep 2012 00:08:46 -0400 Subject: [PATCH] Simplify bookend creation (imported from commit 8faf260037b7e0508d9e4acea24687ebc06ea0ef) --- zephyr/static/js/zephyr.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zephyr/static/js/zephyr.js b/zephyr/static/js/zephyr.js index de9cff7fe3..c55c197bdd 100644 --- a/zephyr/static/js/zephyr.js +++ b/zephyr/static/js/zephyr.js @@ -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($('').append($('')).append($('')).append($('').addClass('bookend'))); + table.append(''); } }