remove console.logs

stable
Juanfran 2016-02-10 07:55:01 +01:00
parent 8fd244feeb
commit c89bd1b234
4 changed files with 0 additions and 5 deletions

View File

@ -65,7 +65,6 @@ CreateMembersDirective = ($rs, $rootScope, $confirm, $loading, lightboxService,
link = ($scope, $el, $attrs) ->
createButton = (type) ->
html = "<svg class='icon " + type + "'><use xlink:href='#" + type + "'></svg>";
console.log html
return html
createFieldSet = (required = true)->

View File

@ -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})

View File

@ -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) ->

View File

@ -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)