jakiestfu / Snap.js

A Library for creating beautiful mobile shelfs in Javascript (Facebook and Path style side menus)

Home Page:http://jakiestfu.github.io/Snap.js/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

techsin opened this issue · comments

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

got it working with this:

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