-
Notifications
You must be signed in to change notification settings - Fork 129
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
stopPropagation is not stopping events from bubble up #60
Comments
Same issue, though rather 'stopPropagation' isn't exposed in the event object, so I have no option for nested handlers at all. |
@jordan-burnett I had to switch the top level to hammer as well, totally not a good solution but works for now |
Found this - https://gist.github.com/jtangelder/361052976f044200ea17 at HammerJS site- http://hammerjs.github.io/tips/ |
I've found a solution that works for me, might be helpful to others
also, please check this post on SO - https://stackoverflow.com/a/25063214 |
For anyone who finds this later, I was able to get around this by using |
I have a child element using
onTap
and a parent element usingonTap
as well. But seems the stopPropagation for both is not seems stopping the event from firing, both function has the stopPropagation are firing regardless... any fix or clue?The text was updated successfully, but these errors were encountered: