From c89bd1b234cf36f56cff4b36c232afa7f0781e9d Mon Sep 17 00:00:00 2001 From: Juanfran Date: Wed, 10 Feb 2016 07:55:01 +0100 Subject: [PATCH] remove console.logs --- app/coffee/modules/admin/lightboxes.coffee | 1 - app/coffee/modules/auth.coffee | 1 - app/coffee/modules/base/http.coffee | 2 -- app/coffee/modules/taskboard/lightboxes.coffee | 1 - 4 files changed, 5 deletions(-) diff --git a/app/coffee/modules/admin/lightboxes.coffee b/app/coffee/modules/admin/lightboxes.coffee index 2ee6542d..5a4ff7cd 100644 --- a/app/coffee/modules/admin/lightboxes.coffee +++ b/app/coffee/modules/admin/lightboxes.coffee @@ -65,7 +65,6 @@ CreateMembersDirective = ($rs, $rootScope, $confirm, $loading, lightboxService, link = ($scope, $el, $attrs) -> createButton = (type) -> html = ""; - console.log html return html createFieldSet = (required = true)-> diff --git a/app/coffee/modules/auth.coffee b/app/coffee/modules/auth.coffee index 9a040fff..3694838b 100644 --- a/app/coffee/modules/auth.coffee +++ b/app/coffee/modules/auth.coffee @@ -214,7 +214,6 @@ PublicRegisterMessageDirective = ($config, $navUrls, $routeParams, templates) -> url = $navUrls.resolve("register") if $routeParams['next'] and $routeParams['next'] != $navUrls.resolve("register") nextUrl = encodeURIComponent($routeParams['next']) - console.log "-----", nextUrl url += "?next=#{nextUrl}" return template({url:url}) diff --git a/app/coffee/modules/base/http.coffee b/app/coffee/modules/base/http.coffee index a2af080d..0c425720 100644 --- a/app/coffee/modules/base/http.coffee +++ b/app/coffee/modules/base/http.coffee @@ -49,8 +49,6 @@ class HttpService extends taiga.Service request: (options) -> options.headers = _.assign({}, options.headers or {}, @.headers()) - console.log options - return @http(options) get: (url, params, options) -> diff --git a/app/coffee/modules/taskboard/lightboxes.coffee b/app/coffee/modules/taskboard/lightboxes.coffee index 9cc979d2..756d84e8 100644 --- a/app/coffee/modules/taskboard/lightboxes.coffee +++ b/app/coffee/modules/taskboard/lightboxes.coffee @@ -50,7 +50,6 @@ CreateEditTaskDirective = ($repo, $model, $rs, $rootscope, $loading, lightboxSer return $q.all(promises) deleteAttachments = (obj) -> - console.log attachmentsToDelete.toJS() promises = _.map attachmentsToDelete.toJS(), (attachment) -> return attachmentsService.delete("task", attachment.id)