All of lore.kernel.org
 help / color / mirror / Atom feed
* [review-request][PATCH 1/3] bitbake: toastergui: Fix toastertable table header reference
@ 2015-08-06 14:25 Michael Wood
  2015-08-06 14:25 ` [review-request][PATCH 2/3] bitbake: toastergui: Move layerdetails view definition to the views.py Michael Wood
  2015-08-06 14:25 ` [review-request][PATCH 3/3] bitbake: toastermain: Add a longer default database timeout Michael Wood
  0 siblings, 2 replies; 4+ messages in thread
From: Michael Wood @ 2015-08-06 14:25 UTC (permalink / raw)
  To: toaster

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.

Signed-off-by: Michael Wood <michael.g.wood@intel.com>
---
 bitbake/lib/toaster/toastergui/static/js/table.js          | 2 +-
 bitbake/lib/toaster/toastergui/templates/toastertable.html | 2 +-
 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 d06a3f5..f18034d 100644
--- a/bitbake/lib/toaster/toastergui/static/js/table.js
+++ b/bitbake/lib/toaster/toastergui/static/js/table.js
@@ -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("");
diff --git a/bitbake/lib/toaster/toastergui/templates/toastertable.html b/bitbake/lib/toaster/toastergui/templates/toastertable.html
index 0473116..9ef4c6f 100644
--- a/bitbake/lib/toaster/toastergui/templates/toastertable.html
+++ b/bitbake/lib/toaster/toastergui/templates/toastertable.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>
-- 
2.1.4



^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-08-06 14:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-06 14:25 [review-request][PATCH 1/3] bitbake: toastergui: Fix toastertable table header reference Michael Wood
2015-08-06 14:25 ` [review-request][PATCH 2/3] bitbake: toastergui: Move layerdetails view definition to the views.py Michael Wood
2015-08-06 14:25 ` [review-request][PATCH 3/3] bitbake: toastermain: Add a longer default database timeout Michael Wood
2015-08-06 14:28   ` Michael Wood

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.