mirror of
https://github.com/chinchang/web-maker.git
synced 2025-02-24 15:12:51 +01:00
handle multitab error.
This commit is contained in:
parent
213b9f166d
commit
98fd9efc33
@ -1,5 +1,3 @@
|
||||
/* global trackEvent */
|
||||
|
||||
window.logout = function logout() {
|
||||
firebase.auth().signOut();
|
||||
};
|
||||
@ -20,7 +18,7 @@ function login(providerName) {
|
||||
.auth()
|
||||
.signInWithPopup(provider)
|
||||
.then(function() {
|
||||
trackEvent('fn', 'loggedIn', providerName);
|
||||
window.trackEvent('fn', 'loggedIn', providerName);
|
||||
// Save to recommend next time
|
||||
window.db.local.set({ lastAuthProvider: providerName });
|
||||
})
|
||||
|
@ -58,7 +58,10 @@
|
||||
if (err.code === 'failed-precondition') {
|
||||
// Multiple tabs open, persistence can only be enabled
|
||||
// in one tab at a a time.
|
||||
// ...
|
||||
alert(
|
||||
"Opening Web Maker web app in multiple tabs isn't supported at present and it seems like you already have it opened in another tab. Please use in one tab."
|
||||
);
|
||||
window.trackEvent('fn', 'multiTabError');
|
||||
} else if (err.code === 'unimplemented') {
|
||||
// The current browser does not support all of the
|
||||
// features required to enable persistence
|
||||
|
Loading…
x
Reference in New Issue
Block a user