bitbake: toastergui: table header bring back

This patch brings back the table header, which I mistakenly
took out when fixing HTML5 compliance.

(Bitbake rev: 9855e0b9735ebf0a6c622bee6ec787dfc1d9e474)

Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Alexandru DAMIAN 2015-05-15 14:43:31 +01:00 committed by Richard Purdie
parent 56c5ff920c
commit 9dcfa32cf1
2 changed files with 2 additions and 2 deletions

View File

@ -163,7 +163,7 @@ function tableInit(ctx){
if (tableChromeDone === true)
return;
var tableHeadRow = table.find("thead tr");
var tableHeadRow = table.find("thead#tableheader");
var editColMenu = $("#table-chrome-"+ctx.tableName).find(".editcol");
tableHeadRow.html("");

View File

@ -92,7 +92,7 @@
<!-- The actual table -->
<table class="table table-bordered table-hover tablesorter" id="{{table_name}}">
<thead>
<thead id="tableheader">
</thead>
<tbody></tbody>
</table>