Attempt to fix google signin
This commit is contained in:
parent
df61f2d999
commit
a14a430d51
@ -21,7 +21,7 @@
|
|||||||
}(document, 'script', 'facebook-jssdk'));
|
}(document, 'script', 'facebook-jssdk'));
|
||||||
fb:login-button(scope="public_profile,email", onlogin="checkLoginState();" data-max-rows="1", data-size="large", data-button-type="login_with", data-show-faces="false", data-auto-logout-link="false", data-use-continue-as="false")
|
fb:login-button(scope="public_profile,email", onlogin="checkLoginState();" data-max-rows="1", data-size="large", data-button-type="login_with", data-show-faces="false", data-auto-logout-link="false", data-use-continue-as="false")
|
||||||
if auth.google
|
if auth.google
|
||||||
script(src="https://apis.google.com/js/api:client.js")
|
script(src="https://apis.google.com/js/platform.js?onload=startApp")
|
||||||
a.login-btn.google-login.float-lg-right
|
a.login-btn.google-login.float-lg-right
|
||||||
i.fab.fa-fw.fa-google
|
i.fab.fa-fw.fa-google
|
||||||
span Log in With Google
|
span Log in With Google
|
||||||
@ -32,7 +32,7 @@
|
|||||||
// Retrieve the singleton for the GoogleAuth library and set up the client.
|
// Retrieve the singleton for the GoogleAuth library and set up the client.
|
||||||
auth2 = gapi.auth2.init({
|
auth2 = gapi.auth2.init({
|
||||||
client_id: '#{auth.google}',
|
client_id: '#{auth.google}',
|
||||||
cookiepolicy: 'single_host_origin',
|
cookie_policy: 'single_host_origin',
|
||||||
fetch_basic_profile: true
|
fetch_basic_profile: true
|
||||||
});
|
});
|
||||||
attachSignin(document.querySelector('.google-login'));
|
attachSignin(document.querySelector('.google-login'));
|
||||||
@ -57,8 +57,6 @@
|
|||||||
alert('Failed to log you in using Google.');
|
alert('Failed to log you in using Google.');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
startApp()
|
|
||||||
if auth.twitter
|
if auth.twitter
|
||||||
a.login-btn.twitter-login.login-dialog-pop.float-lg-right(href="/api/external/twitter/login")
|
a.login-btn.twitter-login.login-dialog-pop.float-lg-right(href="/api/external/twitter/login")
|
||||||
i.fab.fa-fw.fa-twitter
|
i.fab.fa-fw.fa-twitter
|
||||||
|
Reference in New Issue
Block a user