From cabe3659073e7c41a1883f5ef46700007abd7814 Mon Sep 17 00:00:00 2001 From: MaysWind Date: Thu, 5 Mar 2026 23:17:27 +0800 Subject: [PATCH] disable native browser drag behavior on mobile version --- src/MobileApp.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/MobileApp.vue b/src/MobileApp.vue index a43846b2..dbeb3060 100644 --- a/src/MobileApp.vue +++ b/src/MobileApp.vue @@ -181,6 +181,10 @@ onMounted(() => { const languageInfo = getCurrentLanguageInfo(); initMapProvider(languageInfo?.alternativeLanguageTag); }); + + document.addEventListener('dragstart', (e) => { + e.preventDefault(); + }, true); }); watch(currentNotificationContent, (newValue) => {