summaryrefslogtreecommitdiffstats
path: root/bitbake
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
parent56c5ff920c93a627f6bd473383ab4bbca912fc41 (diff)
downloadpoky-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')
-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){
163 if (tableChromeDone === true) 163 if (tableChromeDone === true)
164 return; 164 return;
165 165
166 var tableHeadRow = table.find("thead tr"); 166 var tableHeadRow = table.find("thead#tableheader");
167 var editColMenu = $("#table-chrome-"+ctx.tableName).find(".editcol"); 167 var editColMenu = $("#table-chrome-"+ctx.tableName).find(".editcol");
168 168
169 tableHeadRow.html(""); 169 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 @@
92 92
93 <!-- The actual table --> 93 <!-- The actual table -->
94 <table class="table table-bordered table-hover tablesorter" id="{{table_name}}"> 94 <table class="table table-bordered table-hover tablesorter" id="{{table_name}}">
95 <thead> 95 <thead id="tableheader">
96 </thead> 96 </thead>
97 <tbody></tbody> 97 <tbody></tbody>
98 </table> 98 </table>