for a new hmi project in my company, I am using a plugin for touch gestures for a VueJS project.
The problem is: some of mine gestures are overlapping with the browser default touch gestures of the microsoft edge browser, which are used in kiosk mode.
Is it possible to deactivate the edge touch gestures and only use my defined touch gestures?
Thanks in advance Matthias
Have you ever tried this way?
@touchstart.native.stop
@touchmove.native.stop
@touchend.native.stop
.... and all touch if you want to stop
hope i could help