From 99438729f4d4e59439e19f92abc88c43aa530a05 Mon Sep 17 00:00:00 2001 From: Stephane Bellity Date: Tue, 23 Sep 2014 17:37:57 +0200 Subject: [PATCH] fix default login window height --- src/api/auth.coffee | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/api/auth.coffee b/src/api/auth.coffee index cbdee7ee..cdc3e07c 100644 --- a/src/api/auth.coffee +++ b/src/api/auth.coffee @@ -174,13 +174,12 @@ define ['underscore', '../utils/promises', '../utils/version'], (_, promises, ve window.__hull_login_status__ = null onCompleteAuthentication(hash) authHelper: (path, providerName)-> - if providerName == 'facebook' width = 650 height = 430 else width = 1030 - width = 430 + height = 550 w = window.open(path, "_auth", "location=0,status=0,width=#{width},height=#{height}")