dotmaster/Touchable-jQuery-Plugin

Reference to the original event to stop propagation

Opened this issue · 0 comments

I would like to be able to do something like this, but I cannot see a way to do it:

$el.on("touchablemove", function (e, touch) {
  touch.originalEvent.preventDefault();
  touch.originalEvent.stopPropagation();
});

Or am I missing something?