aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/redbasic/js
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2021-07-08 13:35:28 +0200
committerMario Vavti <mario@mariovavti.com>2021-07-08 13:35:28 +0200
commite39b29cc4b9599918fc87dfc0de753d9db7f1980 (patch)
treef02052541447f4fcd9614205a885e92ebdb49a81 /view/theme/redbasic/js
parent76ed9f391502f70f99da9795e58d556654a86f9a (diff)
downloadvolse-hubzilla-e39b29cc4b9599918fc87dfc0de753d9db7f1980.tar.gz
volse-hubzilla-e39b29cc4b9599918fc87dfc0de753d9db7f1980.tar.bz2
volse-hubzilla-e39b29cc4b9599918fc87dfc0de753d9db7f1980.zip
set touch_max to 1/10 of the screen width to prevent overlaping with cursor positioning
Diffstat (limited to 'view/theme/redbasic/js')
-rw-r--r--view/theme/redbasic/js/redbasic.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js
index a354682d7..9312d8390 100644
--- a/view/theme/redbasic/js/redbasic.js
+++ b/view/theme/redbasic/js/redbasic.js
@@ -71,7 +71,7 @@ $(document).ready(function() {
setInterval(function () {checkNotify();}, 10 * 1000);
var touch_start = null;
- var touch_max = 70;
+ var touch_max = window.innerWidth / 10;
window.addEventListener('touchstart', function(e) {
if (e.touches.length === 1){
@@ -90,7 +90,7 @@ $(document).ready(function() {
window.addEventListener('touchend', function(e) {
$('html, body').css('overflow-y', '');
- let touch_offset = 30; //at least 100px are a swipe
+ let touch_offset = 30; //at least 30px are a swipe
if (touch_start) {
//the only finger that hit the screen left it
let touch_end = e.changedTouches.item(0).clientX;