Is there any way with JS to cancel mouse gesture?
not permanently, but only when needed, eg. in certain frame, event..
I tried onmousemove
return false;
e.stopPropagation();
e.preventDefault();
nothing helped, gesture is fired every time
Is there any way with JS to cancel mouse gesture?
not permanently, but only when needed, eg. in certain frame, event..
I tried onmousemove
return false;
e.stopPropagation();
e.preventDefault();
nothing helped, gesture is fired every time