summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/static/js/layerdetails.js
diff options
context:
space:
mode:
authorMichael Wood <michael.g.wood@intel.com>2015-08-06 19:23:49 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-08-06 16:04:50 -0500
commit58197f345b203f55de202f8c91129e3d381359ed (patch)
treefd9aa5eb5cfe8927efe073ba750b6d475fbc2d55 /bitbake/lib/toaster/toastergui/static/js/layerdetails.js
parenta65099eec3df428f33308a12611262f00ba90f56 (diff)
downloadpoky-58197f345b203f55de202f8c91129e3d381359ed.tar.gz
bitbake: toastergui: layerBtn Fix build trigger mechanism
The new project page is no longer responsible for triggering the build so add a handler for this in layerBtn which is used in the layerdetails and layers pages. This also removes the conflicting and redundant handler for this in the layerdetails. (Bitbake rev: b4c389443bdd121121fd1d1a9006a9f1f63f186f) 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>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/static/js/layerdetails.js')
-rw-r--r--bitbake/lib/toaster/toastergui/static/js/layerdetails.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/js/layerdetails.js b/bitbake/lib/toaster/toastergui/static/js/layerdetails.js
index d9ba687354..000e8038f6 100644
--- a/bitbake/lib/toaster/toastergui/static/js/layerdetails.js
+++ b/bitbake/lib/toaster/toastergui/static/js/layerdetails.js
@@ -179,14 +179,6 @@ function layerDetailsPageInit (ctx) {
179 /* re run the machinesTabShow to update the text */ 179 /* re run the machinesTabShow to update the text */
180 targetsTabShow(); 180 targetsTabShow();
181 } 181 }
182
183 $(".build-target-btn").unbind('click');
184 $(".build-target-btn").click(function(){
185 /* fire a build */
186 var target = $(this).data('target-name');
187 libtoaster.startABuild(ctx.projectBuildsUrl, libtoaster.ctx.projectId, target, null, null);
188 window.location.replace(libtoaster.ctx.projectPageUrl);
189 });
190 }); 182 });
191 183
192 $("#machinestable").on('table-done', function(e, total, tableParams){ 184 $("#machinestable").on('table-done', function(e, total, tableParams){