-
Notifications
You must be signed in to change notification settings - Fork 936
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't load target="_blank" links on iOS #269
Comments
I'm having same issue when I click the Ads. |
I do have same issue even on android. Its not opening _blank links there as well. Any suggestions. I am trying to open in javascript using following line. window.open(myURL, "_blank"); |
Why was this issue closed? The problem still occurs only on iOS in version 0.3.9+1. |
and what about android ? |
It works properly on android.
On Mon, Dec 16, 2019 at 8:24 AM dimanshu ***@***.***> wrote:
and what about android ?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#269?email_source=notifications&email_token=AAJZO72M4CSHQZZSDND7BDLQY56SLA5CNFSM4GKDRRY2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEG6WCTI#issuecomment-566059341>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAJZO7YCHNCHDUK3YL7NARDQY56SLANCNFSM4GKDRRYQ>
.
--
Mike Welch
|
Trying to open popup window ,source |
WKWebView doesn't respect loading new windows (hrefs with target="_blank") like UIWebview did. So if I try to send a user to a page that opens one of its links in a new window, I get the "please disable popup blocker" toast notification.
Stops me from using this package for oauth sites that pop a new window up for the sign in process.
Seems there's an easy workaround in the WKUIDelegate to just capture those events and load them in the current view. I got this code from this stack overflow answer:
Not sure how much work that would be to add to the plugin, but if that could be done it would be great.
The text was updated successfully, but these errors were encountered: