summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster
diff options
context:
space:
mode:
authorAlexandru DAMIAN <alexandru.damian@intel.com>2015-05-15 14:43:31 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-05-29 11:59:44 +0100
commit9dcfa32cf122d8748579043f68d447079bc5bf0c (patch)
treeaab98a9ef98426e0b9774756b92f28669a948fb7 /bitbake/lib/toaster
parent56c5ff920c93a627f6bd473383ab4bbca912fc41 (diff)
downloadopenembedded-core-contrib-9dcfa32cf122d8748579043f68d447079bc5bf0c.tar.gz
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>
Diffstat (limited to 'bitbake/lib/toaster')
-rw-r--r--bitbake/lib/toaster/toastergui/static/js/table.js2
-rw-r--r--bitbake/lib/toaster/toastergui/templates/toastertable.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/js/table.js b/bitbake/lib/toaster/toastergui/static/js/table.js
index 8f5bb2ebe1..97370fd020 100644
--- a/bitbake/lib/toaster/toastergui/static/js/table.js
+++ b/bitbake/lib/toaster/toastergui/static/js/table.js
@@ -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("");
diff --git a/bitbake/lib/toaster/toastergui/templates/toastertable.html b/bitbake/lib/toaster/toastergui/templates/toastertable.html
index 598d2953e1..21392bb139 100644
--- a/bitbake/lib/toaster/toastergui/templates/toastertable.html
+++ b/bitbake/lib/toaster/toastergui/templates/toastertable.html
@@ -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>