-
Notifications
You must be signed in to change notification settings - Fork 12
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
Click does not work on apple touch devices #11
Comments
Thanks. I'll try to find an ipad to test on and then look to update the code so that it works. |
I've tested on an ipad and it does work with just the click event for me. It needs a fairly firm finger press though I think.... Could you confirm which browser you're using? |
Thanks for you reply! I've tested it on various Apple touch devices like iPad 4rd gen. with iOS 11, iPad Air 3rd gen. iOS 13.7, iPhone 11 Pro with iOS 14.2, iPad Pro 4th gen. with iOS 14.2. Everywhere with the native safari browser. On iOS there is only one browser engine available and the version is the same as the os version. I used your demo page to test: https://unpkg.com/[email protected]/sample/basic.html If I touch 5 to 10 times, sometimes it works but very randomly. I think the problem is in the handling of click events on touch devices. There is probably some delay between touch start and touch end and in between there seems something to happen in your script and then something loosing focus. Make this any sense to you? I've created other components for the player and there I can just use the click event. The adjustment I made works for me at moment. But maybe you find a better solution. Kind regards! |
I just ran into the same issue on both, iPads and Android devices. I can confirm that the workaround still works. |
I've had the problem on any iOS device I've tried in both Chrome and Safari. The work around of just pressing it alot / fast isn't great because half the time doing so will accidentally navigate away or bring up a text selection prompt etc and then you have to try all over again. |
Thanks for the module!
Unfortunately the module does not work on Apple touch devices like the iPad.
When I touch the start or end button element, those clicks do not get triggered.
Replacing:
with:
Basically inserting
b.on('touchstart', clickFunction(spec.leftclick));
in line 686 fixes it for me at moment.Don't know why the click is not triggered. Probably something else is going on and the end of the click is never reached on touch devices.
The text was updated successfully, but these errors were encountered: