You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// in constructor : private browserTab: BrowserTab,
this.browserTab.isAvailable().then(
isAvailable => {
if (isAvailable) {
this.browserTab.openUrl(
"myTestUrl"
).then(onfulfilled => {
alert("Succeeded");
}).catch(err => {
alert("errorrrrrr");
});
}
}
).catch( err => {
alert(JSON.stringify(err));
});
`
``
I want to keep an event listener to the opened tab in order to read i.e url or other features.
Unfortunately that is not possible.
I'm using
* Ionic-core:4
* angualr5
* typescript
Any suggestion?
The text was updated successfully, but these errors were encountered:
Hi,
I tried the following:
The text was updated successfully, but these errors were encountered: