-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Disable on iOS 9.3+ #450
Comments
🎉! |
Does anyone have a resource that explains the correlation between versions of Safari and versions of iOS? I'm assuming that Safari v. 9.1 will be rolled out w/ iOS 9.3 updates? |
Kind of duplicate of #444 , also, wouldn't it be better to establish some kind of feature detection instead of user-agent-sniffing? |
It would be better but I don't think it's fully possible here. |
I'm new to this thread, but I was scanning through the FastClick code we should be able to do this with the following change. if (deviceIsIOS && typeof layer.style.touchAction !== "undefined") {
return true;
} Any thoughts? |
@samuelmburu I think it's more nuanced. The I'm not a FastClick contributor, though, that's just my understanding of the code. :) |
Unfortunately the 300ms delay is still present when when the app is added to the homescreen and has the following meta tag:
So you have to also take |
Yes it is still there in UIWebview on 9.3.x |
@nihilus When you say the delay is still there in UIWebView on 9.3.x, does that mean that it will be there in any Cordova apps as well? Is Apple's Release notes ONLY speaking about Safari and not the actual webview that safari is using? |
@HipsterZipster: That's correct. It is there in Cordova apps unless you use the flawed wkwebview. |
@nihilus Are you able to elaborae on what's flawed about the wkwebview? |
I'm not @nihilus but although the performance of WkWebView has been greatly increased, it's really full of bugs. Check the Webkit issues. There are bugs that have been there for 3 or more years. I've reported a few of those myself and never really received an answer. Apple is crippling HTML5 app development. |
Hurray! https://developer.apple.com/library/prerelease/mac/releasenotes/General/WhatsNewInSafari/Articles/Safari_9_1.html#//apple_ref/doc/uid/TP40014305-CH10-SW1
The text was updated successfully, but these errors were encountered: