fix typo
This commit is contained in:
parent
0eff4bd0ac
commit
1e2c304f76
|
@ -22,7 +22,7 @@ const project = (v1, v2) => {
|
||||||
// direction: either use the constants above or an arbitrary 2d vector.
|
// direction: either use the constants above or an arbitrary 2d vector.
|
||||||
// threshold: how many Px to move from touch origin before checking if the
|
// threshold: how many Px to move from touch origin before checking if the
|
||||||
// callback should be called.
|
// callback should be called.
|
||||||
// divergentTolerance: a scalr for much of divergent direction we tolerate when
|
// divergentTolerance: a scalar for much of divergent direction we tolerate when
|
||||||
// above threshold. for example, with 1.0 we only call the callback if
|
// above threshold. for example, with 1.0 we only call the callback if
|
||||||
// divergent component of delta is < 1.0 * direction component of delta.
|
// divergent component of delta is < 1.0 * direction component of delta.
|
||||||
const swipeGesture = (direction, onSwipe, threshold = 30, perpendicularTolerance = 1.0) => {
|
const swipeGesture = (direction, onSwipe, threshold = 30, perpendicularTolerance = 1.0) => {
|
||||||
|
|
Loading…
Reference in New Issue