On Chrome Mobile, Google introduced a tab navigation with the swipe left/right events.
But i have a webapp, and i implement a swipe left event to open my navigation menu (like facebook or spotify)
The problem is, if user start his swipe on the first left pixel (left:0), the browser start the navigation mode, and do not execute my opening menu function.
Is there a way, to disable or stop the navigation mode on Chrome ?
I already tried with .preventDefault
, and stopPropagation
function, but not working :(
Thanks for your help