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

@@ -45,7 +45,6 @@ app.factory('BoardService', function(ApiService, $http, $q){
var _id = id;
$http.post(this.baseUrl + '/' + id + '/deleteUndo').then(function (response) {
self.data[_id].deletedAt = 0;
console.log(self.data[_id]);
deferred.resolve(response.data);
}, function (error) {
deferred.reject('Deleting ' + self.endpoint + ' failed');
@@ -219,4 +218,4 @@ app.factory('BoardService', function(ApiService, $http, $q){
service = new BoardService($http, 'boards', $q);
return service;
});
});