-
Notifications
You must be signed in to change notification settings - Fork 131
Open
Labels
Description
I believe this
zingtouch/src/gestures/Swipe.js
Line 210 in d36d10e
| if (velocity < this.escapeVelocity) { |
should be
for (var i = 0; i < output.data.length; i++) {
if (output.data[i].velocity < this.escapeVelocity) {
return null;
}
}otherwise, it is useless.
Reactions are currently unavailable