From 662603aa4211ed603237c1c70a3de39b0d196023 Mon Sep 17 00:00:00 2001 From: discomrade Date: Mon, 15 Nov 2021 05:29:39 -0100 Subject: [PATCH] Only add drag-drop handlers to dropzone, not the entire document This enables dragging text into the textbox. --- js/file-selector.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/file-selector.js b/js/file-selector.js index 19c4b0c0..dcbfd24a 100644 --- a/js/file-selector.js +++ b/js/file-selector.js @@ -122,7 +122,7 @@ var dropHandlers = { // attach handlers -$(document).on(dropHandlers); +$('.dropzone').on(dropHandlers); $(document).on('click', '.dropzone .remove-btn', function (e) { e.stopPropagation();