Frontend: remove javascript console.log statements

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2017-09-23 14:57:12 +02:00
parent d212a426f2
commit ea1b597fc0
2 changed files with 4 additions and 8 deletions

View File

@@ -52,14 +52,11 @@ app.controller('CardController', function ($scope, $rootScope, $routeParams, $lo
if (BoardService.isArchived() || CardService.getCurrent().archived) {
return false;
}
var node = $event.target.nodeName;
if ($scope.card.archived || !$scope.boardservice.canEdit()) {
console.log(node);
} else {
console.log("edit");
$scope.status.cardEditDescription = true;
return false;
}
console.log($scope.status.canEditDescription);
$scope.status.cardEditDescription = true;
return true;
};
// handle rename to update information on the board as well
$scope.cardRename = function (card) {