From 14c885a60f61dc9b8e582cd162cd2d3d116f617e Mon Sep 17 00:00:00 2001 From: matiasc18 Date: Mon, 6 Apr 2026 16:47:07 -0400 Subject: [PATCH] Animation conflict fix --- src/Home/Home.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Home/Home.js b/src/Home/Home.js index 2cee363..6d15977 100644 --- a/src/Home/Home.js +++ b/src/Home/Home.js @@ -91,6 +91,7 @@ class Home extends Shadow { if(amount > (this.SIDEBAR_FULL_OPEN - this.SIDEBAR_START_THRESHOLD)) { this.dragStartX = e.touches[0].clientX this.dragStartTime = Date.now(); // ⬅ track start time + e.stopPropagation(); document.addEventListener("touchmove", this.moveSidebar) } } else { @@ -116,6 +117,7 @@ class Home extends Shadow { if(amount < this.SIDEBAR_START_THRESHOLD) { this.dragStartX = e.touches[0].clientX this.dragStartTime = Date.now(); + e.stopPropagation(); document.addEventListener("touchmove", this.moveSidebar) } } else {