jakiestfu / Snap.js

A Library for creating beautiful mobile shelfs in Javascript (Facebook and Path style side menus)
http://jakiestfu.github.io/Snap.js/
5.99k stars 666 forks source link

How do I prevent triggering menu open when scrolling on certain element. #283

Closed techsin closed 7 years ago

techsin commented 7 years ago

I've horizontal list which if you can scroll left and right but this triggers snapperjs also and it opens the side menu.

techsin commented 7 years ago

got it working with this:

element.on('touchstart touchmove click scroll', function(e){ e.stopPropagation(); });