1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-09 05:29:32 +00:00

bitbake: toastergui: Fix toastertable table header reference

A header id was mistakenly added to the table template which was not
also added to the simple version of the toaster template. We don't need
this id so remove it.

(Bitbake rev: daf902e2a6f736b9c8ef6492143fdbf856451559)

Signed-off-by: Michael Wood <michael.g.wood@intel.com>
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Michael Wood
2015-08-06 19:01:34 +03:00
committed by Richard Purdie
parent e616c201a5
commit da4c66385d
2 changed files with 2 additions and 2 deletions
@@ -198,7 +198,7 @@ function tableInit(ctx){
if (tableChromeDone === true)
return;
var tableHeadRow = table.find("thead#tableheader");
var tableHeadRow = table.find("thead");
var editColMenu = $("#table-chrome-"+ctx.tableName).find(".editcol");
tableHeadRow.html("");
@@ -78,7 +78,7 @@
<!-- The actual table -->
<table class="table table-bordered table-hover tablesorter" id="{{table_name}}">
<thead id="tableheader">
<thead>
<tr><th></th></tr>
</thead>
<tbody></tbody>