gesture-helper
Advanced tools
Comparing version 0.0.5 to 0.0.6
@@ -9,4 +9,9 @@ import GestureHelper from '../src/gesture-helper.js'; | ||
}, | ||
onPanEnd: (e) => {}, | ||
onPanEnd: (e) => { | ||
demoOutput.innerHTML = JSON.stringify(e); | ||
setTimeout(() => { | ||
demoOutput.innerHTML = `click & drag horizontally ...`; | ||
}, 1000); | ||
}, | ||
}); | ||
@@ -96,3 +96,3 @@ /******/ (function(modules) { // webpackBootstrap | ||
threshold: 5, | ||
swipeVelocity: 0.6, | ||
swipeVelocity: 0.7, | ||
onPanStart: function onPanStart() {}, | ||
@@ -99,0 +99,0 @@ onPan: function onPan() {}, |
{ | ||
"name": "gesture-helper", | ||
"version": "0.0.5", | ||
"version": "0.0.6", | ||
"description": "a *tiny* touch & mouse library to help make tracking touch interactions more simple.", | ||
@@ -5,0 +5,0 @@ "main": "dist/bundle.js", |
@@ -10,3 +10,3 @@ 'use strict'; | ||
threshold: 5, | ||
swipeVelocity: 0.6, | ||
swipeVelocity: 0.7, | ||
onPanStart: () => {}, | ||
@@ -13,0 +13,0 @@ onPan: () => {}, |
Sorry, the diff of this file is not supported yet
149361
610