summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/static/js/layerdetails.js
diff options
context:
space:
mode:
authorMichael Wood <michael.g.wood@intel.com>2015-02-24 17:20:54 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-02-24 23:35:44 +0000
commit1ea940f920371939527353061664b927243a7233 (patch)
treeeceb05e9153698f6409c44f7f27a1e551229cff0 /bitbake/lib/toaster/toastergui/static/js/layerdetails.js
parent1e0e700f4b52465ee0afd5b67222785b9a1a0055 (diff)
downloadpoky-1ea940f920371939527353061664b927243a7233.tar.gz
bitbake: toaster: Add machine selection notification
This adds a notification to the project page to notify users of the change in project configuration. (Bitbake rev: fa5343cf867586c0e42517dd2ed0ec5a4c28c408) Signed-off-by: Michael Wood <michael.g.wood@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.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/js/layerdetails.js b/bitbake/lib/toaster/toastergui/static/js/layerdetails.js
index 2e713d5a0f..22c40d971a 100644
--- a/bitbake/lib/toaster/toastergui/static/js/layerdetails.js
+++ b/bitbake/lib/toaster/toastergui/static/js/layerdetails.js
@@ -133,7 +133,7 @@ function layerDetailsPageInit (ctx) {
133 var data = { machineName : $(this).data('machine-name') }; 133 var data = { machineName : $(this).data('machine-name') };
134 libtoaster.editProject(ctx.xhrEditProjectUrl, ctx.projectId, data, 134 libtoaster.editProject(ctx.xhrEditProjectUrl, ctx.projectId, data,
135 function (){ 135 function (){
136 window.location.replace(ctx.projectPageUrl); 136 window.location.replace(ctx.projectPageUrl+"#/machineselected");
137 }, null); 137 }, null);
138 }); 138 });
139 139