-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Taps get triggered twice on Windows Phone (Internet Explorer mobile) #8
Comments
I'm observing the same problem. |
The events that are firing out of the plugin are a PointerEvent followed by a TouchEvent. Still working my way through the code, but on initial inspection, it looks like the mouse, pointer, and click event handling is all grouped together such that they cancel each other out to prevent multiple firings. But the touch events are in a separate function/closure... could the problem be that when a pointer event is fired it doesn't cancel the touch events? |
For now I've just worked around the problem by hacking the bind function so that it doesn't bind the |
Also seeing this behavior. As per your suggestion @Ghazgkull , I added a conditional to only register ontouch events OR pointerEvents. This is working for me, will add as pull request. |
I am also seeing this behaviour - would appreciate a fix as soon as possible. |
i just proposed a pull request #18 . working for me on iOS, Android, Windows 10 |
Maybe related to: #1 ?
The text was updated successfully, but these errors were encountered: