This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository coselmar. See http://git.codelutin.com/coselmar.git commit 88af5bda89eb8f429ec849ea00afd5a35997b482 Author: Yannick Martel <martel@©odelutin.com> Date: Wed Jan 13 12:26:32 2016 +0100 remove some console log --- coselmar-ui/src/main/webapp/js/coselmar-controllers.js | 9 --------- 1 file changed, 9 deletions(-) diff --git a/coselmar-ui/src/main/webapp/js/coselmar-controllers.js b/coselmar-ui/src/main/webapp/js/coselmar-controllers.js index 5069bdf..30052da 100644 --- a/coselmar-ui/src/main/webapp/js/coselmar-controllers.js +++ b/coselmar-ui/src/main/webapp/js/coselmar-controllers.js @@ -643,7 +643,6 @@ coselmarControllers.controller("UsersCtrl", ['$scope', '$route', '$routeParams', }; $scope.advancedSearchUsers = function() { - console.log($scope.example.role); if ($scope.example.role && $scope.example.role == "ALL") { // Because "ALL" role is just a hack to select no role, remove it from example delete $scope.example.role; @@ -651,10 +650,6 @@ coselmarControllers.controller("UsersCtrl", ['$scope', '$route', '$routeParams', userService.getAdvancedUsers($scope.example, function(users){ $scope.users = users; -// if (!$scope.example.role) { -// // replace "ALL" as role if there is no specified role -// $scope.example.role = ""; -// }; }); }; @@ -749,7 +744,6 @@ coselmarControllers.controller("UserViewCtrl", $scope.user = user; var emailPattern = /^[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+((\.[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+)?)+@(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?\.)+[a-zA-Z0-9](?:[a-zA-Z0-9\-]*[a-zA-Z0-9])?$/; $scope.simpleLogin = !emailPattern.test(user.mail); - console.log($scope.simpleLogin); }, errorService.defaultFailOnCall); $scope.deleteUser = function(userId){ @@ -1440,8 +1434,6 @@ coselmarControllers.controller("QuestionCtrl", ['$scope', '$route', '$routeParam }); modalInstance.result.then(function (link) { - console.log("result is"); - console.log(link); var already = false; for (var i = 0; i < $scope.question.links.length; i++) { if ($scope.question.links[i].id == link.id) { @@ -1600,7 +1592,6 @@ coselmarControllers.controller('ModalCreateDocumentsCtrl', function ($scope, $ui coselmarControllers.controller('ModalEditLinkCtrl', function ($scope, $uibModalInstance, currentLink) { $scope.link = currentLink; - console.log(currentLink); $scope.invalidUrl = false; $scope.create = function () { -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.