From: Alexandru DAMIAN Date: Tue, 10 Mar 2015 17:36:32 +0000 (+0000) Subject: toastergui: project app build command fix X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bfd56aa653a1ec7f8777bcb5e627910c3a7ee35b;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git toastergui: project app build command fix This patch fixes the build command in the angular project for builds triggered from All targets page. Signed-off-by: Alexandru DAMIAN --- diff --git a/lib/toaster/toastergui/static/js/projectapp.js b/lib/toaster/toastergui/static/js/projectapp.js index 82db10781cd..6b1bbb40fbd 100644 --- a/lib/toaster/toastergui/static/js/projectapp.js +++ b/lib/toaster/toastergui/static/js/projectapp.js @@ -327,7 +327,7 @@ projectApp.controller('prjCtrl', function($scope, $modal, $http, $interval, $loc }).error(function(_data, _status, _headers, _config) { if (_status === 0) { // the server has gone away - alert("The server is not responding. The application will terminate now"); + // alert("The server is not responding. The application will terminate now"); $interval.cancel($scope.pollHandle); } else { @@ -652,9 +652,9 @@ projectApp.controller('prjCtrl', function($scope, $modal, $http, $interval, $loc */ $scope.updateDisplayWithCommands = function() { - cmd = $location.path(); function _cmdExecuteWithParam(param, f) { + var cmd = $location.path(); if (cmd.indexOf(param) === 0) { if (cmd.indexOf("=") > -1) { var parameter = cmd.split("=", 2)[1]; @@ -725,8 +725,9 @@ projectApp.controller('prjCtrl', function($scope, $modal, $http, $interval, $loc _cmdExecuteWithParam("/targetbuild=", function (targets) { var oldTargetName = $scope.targetName; $scope.targetName = targets.split(",").join(" "); - $scope.targetNamedBuild(); + $scope.buildNamedTarget(); $scope.targetName = oldTargetName; + $location.path(''); }); _cmdExecuteWithParam("/machineselect=", function (machine) {