Started attachment drag/drop

Currently fighting between sortable and tinymce mechanisms which prevent
this working due to the different events stopping the drop event while
needing the dragover for cursor placement.
This commit is contained in:
Dan Brown
2020-07-28 10:45:28 +01:00
parent 76fcbd3752
commit 18f406d97b
4 changed files with 32 additions and 1 deletions

View File

@ -639,6 +639,7 @@ class WysiwygEditor {
});
editor.on('drop', function (event) {
console.log('drop')
let dom = editor.dom,
rng = tinymce.dom.RangeUtils.getCaretRangeFromPoint(event.clientX, event.clientY, editor.getDoc());