summaryrefslogtreecommitdiff
path: root/bundle.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-02-21 14:00:07 +0100
committerJules Laplace <julescarbon@gmail.com>2018-02-21 14:00:07 +0100
commit4965ee2d60b8f671b2ea243f32c69f249b41caab (patch)
tree74947f3b0713b1936e40e5bdceae63a2baa737b4 /bundle.js
parent62f9efe92b3a78bb0a4ad785da1ed3b89d75300b (diff)
overflow scroll
Diffstat (limited to 'bundle.js')
-rw-r--r--bundle.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/bundle.js b/bundle.js
index 0924b29..fdfbd8c 100644
--- a/bundle.js
+++ b/bundle.js
@@ -24811,7 +24811,8 @@ function up(e) {
function touch(f) {
return function (e) {
- return e.preventDefault() && f(e.touches[0]);
+ e.preventDefault();
+ f(e.touches[0]);
};
}
document.body.addEventListener("mousedown", down);