You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I try to use Touchy on my Transformer Prime, the touchend event is never triggered, unless I only do a simple click-like touch. Once I move the finger, the touch never ends and the hand grows more and more fingers the more touchstart events I trigger.
to make sure that only one finger is used but that won't help either. The hand grows more and more fingers with every new touchstart and never is a touchend event triggered.
The text was updated successfully, but these errors were encountered:
Basically, touchstart, touchmove and touchend need to first call e.preventDefault(); or the following events will not be triggered. Once that line is added in the event handlers, everything works fine on android.
Note that this might introduce new bugs though, because the event propagation is canceled and thus, clickable things such as links in the touchy area don't react to clicks anymore.
For example, I use touchy to scroll a list of images. After adding aforementioned fix, scrolling works but clicking on the images does no longer work.
When I try to use Touchy on my Transformer Prime, the
touchend
event is never triggered, unless I only do a simple click-like touch. Once I move the finger, the touch never ends and the hand grows more and more fingers the moretouchstart
events I trigger.Using mouse simulation my code works fine though.
I've tried initializing Touchy with
to make sure that only one finger is used but that won't help either. The hand grows more and more fingers with every new
touchstart
and never is atouchend
event triggered.The text was updated successfully, but these errors were encountered: