diff options
Diffstat (limited to 'bundle.js')
| -rw-r--r-- | bundle.js | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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); |
