summaryrefslogtreecommitdiff
path: root/bundle.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2017-06-26 03:31:05 +0200
committerJules Laplace <julescarbon@gmail.com>2017-06-26 03:31:05 +0200
commitd96b2956888e7b6cf9b036e6ae452e7fc5b4623b (patch)
tree5ec488faa795640158ad77b7947c9b64318a0d15 /bundle.js
parent06174dd8d56f31acd0cb49036013a29982d76458 (diff)
touch events
Diffstat (limited to 'bundle.js')
-rw-r--r--bundle.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundle.js b/bundle.js
index bfddf1b..afa180f 100644
--- a/bundle.js
+++ b/bundle.js
@@ -22639,7 +22639,7 @@ function mod(n, m) {
}
function firstTouch(f) {
return function (e) {
- return e.preventDefault && f(e.touches[0]);
+ e.preventDefault();f(e.touches[0]);
};
}