The branch, master has been updated via 7e79589eba71b758e94587fae369ce5792da4d17 (commit) from b34b104a3061d315eec6ce540cae5e43e5190f34 (commit)
- Log ----------------------------------------------------------------- commit 7e79589eba71b758e94587fae369ce5792da4d17 Author: Madhura Jayaratne madhuracj@users.sourceforge.net Date: Wed Jan 12 10:48:43 2011 -0500
Patch #3155803 - Column header misalignment
-----------------------------------------------------------------------
Summary of changes: js/sql.js | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/js/sql.js b/js/sql.js index e985be2..e61214e 100644 --- a/js/sql.js +++ b/js/sql.js @@ -110,7 +110,13 @@ function appendInlineAnchor() { if($(this).attr('colspan') == 3) { $(this).attr('colspan', '4') } - }) + }); + + $('#rowsDeleteForm').find('tbody').find('th').each(function() { + if($(this).attr('colspan') == 3) { + $(this).attr('colspan', '4') + } + }); } }
hooks/post-receive