This commit is contained in:
Sagi Dayan 2015-08-03 01:40:24 +03:00
parent 9955bae56c
commit 3b1a2dbd07

View file

@ -1,4 +1,4 @@
angular.module('SeHub').controller('newTasksController', ['$scope', 'apiService', '$cookies', '$location' , angular.module('SeHub').controller('newTasksController', ['$scope', 'apiService', '$cookies', '$location',
function($scope, apiService, $cookies, $location) { function($scope, apiService, $cookies, $location) {
$scope.newComp = {}; $scope.newComp = {};
@ -44,10 +44,10 @@ angular.module('SeHub').controller('newTasksController', ['$scope', 'apiService'
day: payload.dueDate.getDate() day: payload.dueDate.getDate()
} }
apiService.createTask(token, payload).success(function(data){ apiService.createTask(token, payload).success(function(data) {
$location.path('/tasks'); $location.path('/tasks');
}).error(function(err){ }).error(function(err) {
console.error(err); console.error(err);
}) })
} else { } else {
@ -95,10 +95,10 @@ angular.module('SeHub').controller('newTasksController', ['$scope', 'apiService'
var type = $scope.newComp.type; var type = $scope.newComp.type;
comp.type = type; comp.type = type;
comp.order = compOrder; comp.order = compOrder;
compOrder ++; compOrder++;
comp.isMandatory = $scope.newComp.isMandatory; comp.isMandatory = $scope.newComp.isMandatory;
comp.label = ""; comp.label = "";
var i = 0 var i = 0;
if (!(type === 'textbox' || type === 'textarea' || type === 'checkbox')) if (!(type === 'textbox' || type === 'textarea' || type === 'checkbox'))
while ($scope.newComp.label[i]) { while ($scope.newComp.label[i]) {
comp.label += $scope.newComp.label[i] + "|"; comp.label += $scope.newComp.label[i] + "|";