1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-02 01:19:52 +00:00

bitbake: toaster: Port All recipes, layers and machines to ToasterTables

Port of the main tables to the new ToasterTable widget.

(Bitbake rev: 6de539d5953b2dca2a9ed75556a59764337a194c)

Signed-off-by: Michael Wood <michael.g.wood@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Michael Wood
2015-05-11 18:51:28 +01:00
committed by Richard Purdie
parent 7f8c44771c
commit 23f5b009e0
13 changed files with 349 additions and 634 deletions
@@ -256,3 +256,6 @@ div.add-deps { margin-top: 15px; }
.machines-highlight { -webkit-animation: machines-fade 7s 1; -moz-animation: machines-fade 7s 1; animation: machines-fade 7s 1; }
.tab-pane table { margin-top: 10px; }
thead .description, .get_description_or_summary { width: 364px; }
thead .add-del-layers { width: 124px; }
@@ -2,7 +2,10 @@
function layerBtnsInit(ctx) {
$(".layerbtn").click(function (){
/* Remove any current bindings to avoid duplicated binds */
$(".layerbtn").unbind('click');
$(".layerbtn").click(function (){
var layerObj = $(this).data("layer");
var add = ($(this).data('directive') === "add");
var thisBtn = $(this);
@@ -361,6 +361,7 @@ $(document).ready(function() {
});
/* START TODO Delete this section now redundant */
/* Belen's additions */
// turn Edit columns dropdown into a multiselect menu
@@ -409,6 +410,8 @@ $(document).ready(function() {
$(this).find(".hover-help").css("visibility","hidden");
});
/* END TODO Delete this section now redundant */
// show task type and outcome in task details pages
$(".task-info").tooltip({ container: 'body', html: true, delay: {show: 200}, placement: 'right' });