From 4bbc87695eab77dba0331c02bf266d067536f15f Mon Sep 17 00:00:00 2001 From: Tony Tam Date: Sun, 1 Feb 2015 00:48:26 -0800 Subject: [PATCH] removed log --- src/main/coffeescript/view/BasicAuthButton.coffee | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/coffeescript/view/BasicAuthButton.coffee b/src/main/coffeescript/view/BasicAuthButton.coffee index 7af1ac5f..54c96a55 100644 --- a/src/main/coffeescript/view/BasicAuthButton.coffee +++ b/src/main/coffeescript/view/BasicAuthButton.coffee @@ -12,7 +12,6 @@ class BasicAuthButton extends Backbone.View "click #apply_basic_auth" : "applyPassword" applyPassword: -> - console.log "applying password" username = $(".input_username").val() password = $(".input_password").val() window.authorizations.add(@model.type, new PasswordAuthorization("basic", username, password))