Fix drag & drop overlay not appearing on firefox (#1721)

This commit is contained in:
Eugen 2017-04-13 22:21:34 +02:00 committed by GitHub
parent 485310a43c
commit c5afe573da
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ const UI = React.createClass({
this.dragTargets.push(e.target); this.dragTargets.push(e.target);
} }
if (e.dataTransfer && e.dataTransfer.files.length > 0) { if (e.dataTransfer && e.dataTransfer.items.length > 0) {
this.setState({ draggingOver: true }); this.setState({ draggingOver: true });
} }
}, },