1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-08-17 12:41:44 +02:00

fix(DragAndDrop): isDraggingInternally should not be reset by the onDragOver handler (#1929)

Fixes #1871
This commit is contained in:
Quentin Gérôme
2018-06-22 17:50:51 +02:00
committed by Ian Storm Taylor
parent 0322f7a1b8
commit d8d0b5ff3c

View File

@@ -163,8 +163,6 @@ function AfterPlugin() {
function onDragOver(event, change, editor) { function onDragOver(event, change, editor) {
debug('onDragOver', { event }) debug('onDragOver', { event })
isDraggingInternally = false
} }
/** /**