disable native browser drag behavior on mobile version
This commit is contained in:
@@ -181,6 +181,10 @@ onMounted(() => {
|
||||
const languageInfo = getCurrentLanguageInfo();
|
||||
initMapProvider(languageInfo?.alternativeLanguageTag);
|
||||
});
|
||||
|
||||
document.addEventListener('dragstart', (e) => {
|
||||
e.preventDefault();
|
||||
}, true);
|
||||
});
|
||||
|
||||
watch(currentNotificationContent, (newValue) => {
|
||||
|
||||
Reference in New Issue
Block a user