summaryrefslogtreecommitdiff
path: root/bundle.js
diff options
context:
space:
mode:
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);