commento.js: remove social buttons on login button

This commit is contained in:
Adhityaa Chandrasekar 2018-08-13 10:50:23 +05:30
parent baf2e7dc03
commit 6f89d30b37

View File

@ -67,6 +67,7 @@
var shownReply = {}; var shownReply = {};
var configuredOauths = []; var configuredOauths = [];
var loginBoxType = "signup"; var loginBoxType = "signup";
var oauthButtonsShown = false;
function $(id) { function $(id) {
@ -1079,7 +1080,10 @@
append(loginBox, oauthPretext); append(loginBox, oauthPretext);
append(oauthButtonsContainer, oauthButtons); append(oauthButtonsContainer, oauthButtons);
append(loginBox, oauthButtonsContainer); append(loginBox, oauthButtonsContainer);
oauthButtonsShown = true;
} }
else
oauthButtonsShown = false;
append(loginBox, close); append(loginBox, close);
@ -1105,10 +1109,11 @@
loginBoxType = "login"; loginBoxType = "login";
if (leaveOauth !== true && configuredOauths.length > 0) { if (ouathButtonsShown && leaveOauth !== true && configuredOauths.length > 0) {
remove(hr); remove(hr);
remove(oauthPretext); remove(oauthPretext);
remove(oauthButtonsContainer); remove(oauthButtonsContainer);
oauthButtonsShown = false;
} }
} }
@ -1183,7 +1188,7 @@
remove(emailButton); remove(emailButton);
remove(loginLinkContainer); remove(loginLinkContainer);
if (loginBoxType == "signup") { if (oauthButtonsShown) {
if (configuredOauths.length > 0) { if (configuredOauths.length > 0) {
remove(hr); remove(hr);
remove(oauthPretext); remove(oauthPretext);
@ -1289,7 +1294,7 @@
} }
global.loginBoxShow = function() { global.loginBoxShow = function(signup) {
var mainArea = $(ID_MAIN_AREA); var mainArea = $(ID_MAIN_AREA);
var loginBoxContainer = $(ID_LOGIN_BOX_CONTAINER); var loginBoxContainer = $(ID_LOGIN_BOX_CONTAINER);