Skip to content

Commit

Permalink
Slightly smaller threshold for pan detection, refs #363
Browse files Browse the repository at this point in the history
  • Loading branch information
bergie committed Aug 10, 2017
1 parent 72af77b commit f6d42f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion the-graph/the-graph-app.js
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ module.exports.register = function (context) {
recognizers: [
[ Hammer.Tap, { } ],
[ Hammer.Press, { time: 500 } ],
[ Hammer.Pan, { direction: Hammer.DIRECTION_ALL } ],
[ Hammer.Pan, { direction: Hammer.DIRECTION_ALL, threshold: 5 } ],
[ Hammer.Pinch, { } ],
],
});
Expand Down

0 comments on commit f6d42f8

Please sign in to comment.