in5
in5
@melloware done.
I'm finding that the end event is not triggering in my code, so `swipeStatus `fires, but `swipe `does not when touching the screen on Windows. Working on it now.
Another issue I'm seeing is the threshold. Touch gestures on Windows register much smaller move distances. I'm seeing values like 16, when the same swipe with the mouse pointer registers...
Also, for some reason when using a touch gesture: ``` $element.on(END_EV, touchEnd); //this doesn't work $element.one(END_EV, function(e) { touchEnd(e); }); //but this works ```
Would love to get your input on these items, @mattbryson as you're much more experience than I am. Is there a way to normalize the touch gesture distance? For now,...