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 my app I have some links with the tag <a href=""> and also with javascript with the code below.
leturl=param;window.open(url,'_system');
My config.xml is configured as below, and opening links works perfectly, when clicking on a link or executing the window.open function, it opens Safari and the URL together.
However, as I need to display some videos from YouTube and Vimeo (iframe), I needed to add the allow-navigation tag, but when I do that, the allow-intent setting is ignored and all links start opening inside the app.
One option would be to go through all the static and dynamic links (which come via AJAX requests) and add an onClick event to use the inAppBrowser with _system, but I don't know how to do this.
In my app I have some links with the tag
<a href="">
and also with javascript with the code below.My config.xml is configured as below, and opening links works perfectly, when clicking on a link or executing the
window.open
function, it opens Safari and the URL together.However, as I need to display some videos from YouTube and Vimeo (iframe), I needed to add the
allow-navigation
tag, but when I do that, theallow-intent
setting is ignored and all links start opening inside the app.I use
https://*/*
because the user can make infinite URLs available and so it would be interesting for him to be able to open any one.I don't know if this is a bug or my fault.
The text was updated successfully, but these errors were encountered: