You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can i get vertical swipe to work with two fingers. It is working fine with one finger but i need two finger swipe as single touch is used for another purpose. I tried putting swipe_max_touches to 0 to get access to unlimited touches but it does'nt seem to work
The text was updated successfully, but these errors were encountered:
Actually it can be done by setting poiner number to 2. var myElement = document.getElementById('container1'); var mc = new Hammer(myElement); mc.get('swipe').set({ direction: Hammer.DIRECTION_VERTICAL, pointers : 2}); mc.on("swipe", function(ev) { console.log('swiped', ev); });
Can i get vertical swipe to work with two fingers. It is working fine with one finger but i need two finger swipe as single touch is used for another purpose. I tried putting swipe_max_touches to 0 to get access to unlimited touches but it does'nt seem to work
The text was updated successfully, but these errors were encountered: