HotStudio / touchy

jQuery plugin for touch events
touchyjs.org/
Other
357 stars 108 forks source link

Bug with velictyThresh (easy-swipe) in test-pages #26

Open metalass opened 8 years ago

metalass commented 8 years ago

Hi!

There is some common mistake in JavaScript of test-pages. Just compare:

$swipeArea.data("touchySwipe").settings.velocityThresh = 0.3; RIGHT

$swipeArea.data("touchySwipe").velocityThresh = 1; WRONG (right is the following: $swipeArea.data("touchySwipe").settings.velocityThresh = 1;)

That's why toggling easy swipe almost have no effect in demos.