jtibbles commented on issue #592:
URL:
https://github.com/apache/cordova-plugin-inappbrowser/issues/592#issuecomment-646579095
> @jtibbles @netomarchiori @RichardBoyder @harnemo
> After research and read blogs and all I found a solution for tel: sms:
mailto: geo: links after a day like change some code in
**plugins/cordova-plugin-inappbrowser/src/ios/CDVWKInAppBrowser.m** file.
>
> **Existing**
> `if ([[ url scheme] isEqualToString:@"itms-appss"] || [[ url scheme]
isEqualToString:@"itms-apps"]) { `
>
> **Replaced with**
> `if ([[ url scheme] isEqualToString:@"itms-appss"] || [[ url scheme]
isEqualToString:@"itms-apps"] || [[ url scheme] isEqualToString:@"tel"] || [[
url scheme] isEqualToString:@"sms"] || [[ url scheme]
isEqualToString:@"mailto"] || [[ url scheme] isEqualToString:@"geo"]) {`
>
> And its working ๐คช ๐คจ ๐ง boom ๐
I did something similar to get it working. Your solution is probably better
though :)
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]