Swipe event doesn't work in Chrome 55.0
See original GitHub issueWe use leftSwipe and rightSwipe to detect the event but neither of it works in Chrome with version higher than 55.0. But before it worked in Chrome 54.0 and version lower than 55.0. Also tried in Firefox and Safari, and both of them work fine.
hammer.add(new Hammer.Swipe({ event: "leftSwipe", direction: Hammer.DIRECTION_LEFT }));
hammer.add(new Hammer.Swipe({ event: "rightSwipe", direction: Hammer.DIRECTION_RIGHT }));
This problem can also be test here https://hammerjs.github.io/
Issue Analytics
- State:
- Created 7 years ago
- Reactions:11
- Comments:30 (2 by maintainers)
Top Results From Across the Web
Touch events not working in Chrome 55+ / Android
Solution is to open chrome://flags and set Pointer Events to Disabled. Is there any other way to solve this since it is not...
Read more >Swipe up from shelf is no longer working - Google Support
Hello, after my Chromebook updated I am no longer able to access my apps my swiping up from my shelf. Is there a...
Read more >Jquery Mobile Swipe events are not firing - Stack Overflow
I have my smartphone connected via usb cable and track the debugging via chrome developer tools. Click on the device triggers the click...
Read more >466167 - Chrome click / touch event is not working ... - Monorail
Most browsers do fire those events on clicks. ... I have a similar issue too. Click events only fire when a finger is...
Read more >New In Chrome 55 - Chrome Developers
You had a mouse, you moved it around, sometimes you pushed buttons, and that was it. But this, doesn't work so well on...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
FYI
I’ve solved my problem (Swipe not working on Chrome 56 on Android) using this
I think this is due to chrome making touchEvents passive by default. Ill try to find time to lookinto this and fix this week