Make memoryLimit step in 8s

This commit is contained in:
Johannes Zellner
2016-02-05 14:56:46 +01:00
parent 4fc0df31fe
commit 3fc9bde4f4
3 changed files with 20 additions and 4 deletions

View File

@@ -11,7 +11,7 @@ angular.module('Application').controller('AppsController', ['$scope', '$location
$scope.config = Client.getConfig();
$scope.user = Client.getUserInfo();
$scope.memoryTicks = [128, 256, 512, 1024, 2048];
$scope.memoryTicks = [256, 512, 1024, 2048, 4096];
$scope.appConfigure = {
busy: false,
@@ -26,7 +26,8 @@ angular.module('Application').controller('AppsController', ['$scope', '$location
certificateFile: null,
certificateFileName: '',
keyFile: null,
keyFileName: ''
keyFileName: '',
memoryLimit: 256
};
$scope.appUninstall = {