Skip to content
Snippets Groups Projects
Commit ae53687b authored by syuilo's avatar syuilo
Browse files

[Client] Fix bug

parent 6aaa5798
No related branches found
No related tags found
No related merge requests found
......@@ -92,7 +92,8 @@
return false;
};
this.ondragenter = () => {
this.ondragenter = e => {
e.preventDefault();
if (!this.isDragging) this.draghover = true;
};
......@@ -101,6 +102,7 @@
};
this.ondrop = e => {
e.preventDefault();
e.stopPropagation();
this.draghover = false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment