From 38f995e64f7bc0653428e18f43a7e335f4a21ab7 Mon Sep 17 00:00:00 2001 From: esterTion Date: Fri, 1 May 2020 09:02:15 +0800 Subject: [PATCH] Fix drop event in Firefox (#134) --- js/dllpatcher.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/dllpatcher.js b/js/dllpatcher.js index 841a1b5..27a7397 100644 --- a/js/dllpatcher.js +++ b/js/dllpatcher.js @@ -242,6 +242,7 @@ class PatchContainer { }) .on("dragover dragenter dragleave dragend drop", function (e) { e.preventDefault(); + e.stopPropagation(); }); container.on("drop", function (e) {