Integrate Microsoft login option when logging in and no accounts are stored (not first-time).

This commit is contained in:
Daniel Scalzi 2022-02-09 19:26:25 -05:00
parent d95e85aa40
commit ce52b520ae
No known key found for this signature in database
GPG Key ID: 9E3E2AFE45328AA5

View File

@ -88,8 +88,11 @@ function showMainUI(data){
currentView = VIEWS.landing currentView = VIEWS.landing
$(VIEWS.landing).fadeIn(1000) $(VIEWS.landing).fadeIn(1000)
} else { } else {
currentView = VIEWS.login loginOptionsCancelEnabled(false)
$(VIEWS.login).fadeIn(1000) loginOptionsViewOnLoginSuccess = VIEWS.landing
loginOptionsViewOnLoginCancel = VIEWS.loginOptions
currentView = VIEWS.loginOptions
$(VIEWS.loginOptions).fadeIn(1000)
} }
} }