Fasttouch on Android doesn't work well
Hi,
Fasttouch doesn't work well on Android, sometime you just scroll and you accidently click link, and it happen often and it' anoying.
But fasttouch work great on iPhone.
Any idea to make fasttouch work on iPhone but not on Android?
I just wanted to find a way to put useFastTouch: false, Only when it's not a iPhone.
something like, if it's not iPhone useFastTouch: false,
i know how to check user agent, but don't really know how tu make it work in the: var jQT = new $.jQTouch({
Dynamically changing true to false or something like that.
something like that should work, but really don't know how
var ua = navigator.userAgent.toLowerCase();
var isAndroid = ua.indexOf("android") > -1; //&& ua.indexOf("mobile");
if(isAndroid) {
// Do something!
var fastouch = 'false,' ;
//alert('is android');
}
any idea to make it work?
I tracked an Android issue I was having to useFastTouch. None of the navigation or any of the jQuery I wrote was working on Android 2.3 and the jQuery bridge version of jQtouch. Not sure of the exact jQtouch version number. I can confirm that this occurs in the demos as well. In the Zepto version useFastTouch works as it should.
See workaround in Issue #425