diff --git a/webadmin/src/views/apps.html b/webadmin/src/views/apps.html index 466046477..e44292738 100644 --- a/webadmin/src/views/apps.html +++ b/webadmin/src/views/apps.html @@ -55,10 +55,6 @@
diff --git a/webadmin/src/views/apps.js b/webadmin/src/views/apps.js index dbe4e3640..6c104201c 100644 --- a/webadmin/src/views/apps.js +++ b/webadmin/src/views/apps.js @@ -313,22 +313,6 @@ angular.module('Application').controller('AppsController', ['$scope', '$location }); }; - $scope.startApp = function (app) { - $scope.appConfigure.runStateBusy = true; - app.runState = 'pending_start'; // we assume we will end up there - Client.startApp(app.id, function () { - $scope.appConfigure.runStateBusy = false; - }); - }; - - $scope.stopApp = function (app) { - $scope.appConfigure.runStateBusy = true; - app.runState = 'pending_stop'; // we assume we will end up there - Client.stopApp(app.id, function () { - $scope.appConfigure.runStateBusy = false; - }); - }; - $scope.cancel = function () { window.history.back(); };