jwasnoggin

Results 4 comments of jwasnoggin

Adding this was sufficient for me to get `tel:` links working: ```javascript document.addEventListener("deviceready", function () { if (device.platform == 'iOS') { $(document).on('click', 'a[href^=mailto], a[href^=tel]', function (e) { e.preventDefault(); var href...

I also needed this functionality so I've created a PR for this: #286

Looks like this has been fixed by https://github.com/NeoLSN/cordova-plugin-android-permissions/pull/118

I've got what I believe is a similar issue, but in this case elements that contain only a space are having the space removed after being converted to an object...