You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by GitBox <gi...@apache.org> on 2020/06/16 03:38:21 UTC

[GitHub] [cordova-plugin-inappbrowser] vc-rakesh commented on issue #592: A HREF's are being ignored using WKWebView on iOS

vc-rakesh commented on issue #592:
URL: https://github.com/apache/cordova-plugin-inappbrowser/issues/592#issuecomment-644512070


   @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 ๐Ÿ˜›


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org