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 order to workaround this I have added the following code to my project. It is a ugly hack that creates an alias in the cordova-plugin-inappbrowser plugin.
I instanciate a an InAppBrowser with
let browser = new InAppBrowser('my_fancy_url', "_self", 'location=no,hidden=yes,useWideViewPort=yes');
Then a call on
browser.insertCss({code: this.cssETransaction});
raises an error :I tried to call
insertCss()
afterbrowser.show()
, I tried to set hidden to no but I never managed to insert CSS.On the other hand on chrome://inspect when I call the InAppBrowser from
cordova.InAppBrowser.open(...)
I can easily insertCss.Any Thoughts on that ?
The text was updated successfully, but these errors were encountered: