mirror of
https://git.yoctoproject.org/poky
synced 2026-09-14 21:49:33 +02:00
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:
committed by
Richard Purdie
parent
56c5ff920c
commit
9dcfa32cf1
@@ -163,7 +163,7 @@ function tableInit(ctx){
|
|||||||
if (tableChromeDone === true)
|
if (tableChromeDone === true)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
var tableHeadRow = table.find("thead tr");
|
var tableHeadRow = table.find("thead#tableheader");
|
||||||
var editColMenu = $("#table-chrome-"+ctx.tableName).find(".editcol");
|
var editColMenu = $("#table-chrome-"+ctx.tableName).find(".editcol");
|
||||||
|
|
||||||
tableHeadRow.html("");
|
tableHeadRow.html("");
|
||||||
|
|||||||
@@ -92,7 +92,7 @@
|
|||||||
|
|
||||||
<!-- The actual table -->
|
<!-- The actual table -->
|
||||||
<table class="table table-bordered table-hover tablesorter" id="{{table_name}}">
|
<table class="table table-bordered table-hover tablesorter" id="{{table_name}}">
|
||||||
<thead>
|
<thead id="tableheader">
|
||||||
</thead>
|
</thead>
|
||||||
<tbody></tbody>
|
<tbody></tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|||||||
Reference in New Issue
Block a user