mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
Fix drag & drop overlay not appearing on firefox (#1721)
This commit is contained in:
parent
485310a43c
commit
c5afe573da
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ const UI = React.createClass({
|
|||
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 });
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue