remove console.logs
parent
8fd244feeb
commit
c89bd1b234
|
@ -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)->
|
||||
|
|
|
@ -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})
|
||||
|
|
|
@ -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) ->
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue