Open metalass opened 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.
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.