forked from rDrama/rDrama
1
0
Fork 0

reduce timeout

master
Aevann 2024-02-18 22:51:51 +02:00
parent 898c650223
commit 07d1d1bf52
1 changed files with 2 additions and 2 deletions

View File

@ -93,14 +93,14 @@ if (screen_width < 768) {
imgnav_prev.click() imgnav_prev.click()
setTimeout(() => { setTimeout(() => {
active = true; active = true;
}, 500); }, 100);
} }
if (f < -0.2) { if (f < -0.2) {
active = false; active = false;
imgnav_next.click() imgnav_next.click()
setTimeout(() => { setTimeout(() => {
active = true; active = true;
}, 500); }, 100);
} }
} }
} }