google / cordova-plugin-browsertab

A Cordova plugin that provides an interface to in-app browser tabs that exist on some mobile platforms, such as SFSafariViewController on iOS and CustomTabs on Android.
Apache License 2.0
117 stars 147 forks source link

not opening tab on ipad #40

Open d3NNEb opened 2 years ago

d3NNEb commented 2 years ago

using firebase auth js per https://firebase.google.com/docs/auth/web/cordova

code

        var provider = new firebase.auth.GoogleAuthProvider();

        firebase.auth().signInWithRedirect(provider).then(function () {
            return firebase.auth().getRedirectResult();
        }).then((result) => {
            ...
        }).catch((error) => {
            ...
        });

on iphone (simulator AND device), browsertab opens for oauth signin on ipad (simulator AND device), browsertab does not open

any ideas?