jQTouch icon indicating copy to clipboard operation
jQTouch copied to clipboard

Fasttouch on Android doesn't work well

Open onigetoc opened this issue 13 years ago • 3 comments

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');
}

onigetoc avatar Feb 18 '12 04:02 onigetoc

any idea to make it work?

onigetoc avatar Feb 27 '12 16:02 onigetoc

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.

eightdotthree avatar Apr 04 '12 18:04 eightdotthree

See workaround in Issue #425

thomasyip avatar Dec 20 '12 20:12 thomasyip