Update antfarm, dashboard, memory +1 more (+20 ~12 -6)

This commit is contained in:
Echo
2026-02-11 07:37:09 +00:00
parent 1e1f5baf9b
commit 6b1705bbea
83 changed files with 8231 additions and 1506 deletions

View File

@@ -45,7 +45,7 @@
function handleSwipe() {
const deltaX = touchEndX - touchStartX;
const deltaY = Math.abs(touchEndY - touchStartY);
// Ignore if vertical swipe or too short
if (deltaY > maxVerticalDistance) return;
if (Math.abs(deltaX) < minSwipeDistance) return;