From b21a865584d001b98936ab15325f352ba93350aa Mon Sep 17 00:00:00 2001 From: Fridolin Somers Date: Tue, 13 Sep 2022 10:27:39 -1000 Subject: [PATCH] Bug 31558: Fix image drag and drop in TinyMCE Bug 26949 upgraded JS lib TinyMCE to 5.9.2 This version has a known issue on images drag and drop : https://stackoverflow.com/questions/64782955/tinymce-inline-drag-and-drop-image-upload-not-working Test plan : 1) Go to Tools > HTML customizations 2) Create a new entry (not using text editor) 3) Drag and drop an image => Without patch you see an error message from TinyMCE 'Dropped file type is not supported' => With patch : It works ! Signed-off-by: David Nind --- .../intranet-tmpl/prog/en/modules/tools/additional-contents.tt | 1 + 1 file changed, 1 insertion(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/additional-contents.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/additional-contents.tt index 070b3063d5..d8613f91fd 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/additional-contents.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/additional-contents.tt @@ -724,6 +724,7 @@ so We don't need to keep track of it */ let editor = tinyMCE.init({ branding : false, + block_unsupported_drop : false, content_css : "[% interface | html %]/[% theme | html %]/css/tinymce.css", custom_elements:"style,link,~link", extended_valid_elements:"style,link[href|rel]", -- 2.30.2