[Bug Fix] Fix Firefox Page Drag Bug (#1837)
Fix a bug where the file drop prompt would show during page drag on Firefox. Co-authored-by: kazandaki <ahmetfiratusta@gmail.com>
This commit is contained in:
parent
82219dd899
commit
78211d09c5
1 changed files with 2 additions and 1 deletions
|
@ -96,7 +96,8 @@ class DragDropManager {
|
|||
}
|
||||
|
||||
adapt(div) {
|
||||
const onDragStart = () => {
|
||||
const onDragStart = (e) => {
|
||||
e.preventDefault();
|
||||
this.startDraggingPage(div);
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue