Hide drag & drop area on drop event regardless of success

This commit is contained in:
Eugen Rochko 2017-03-28 14:17:24 +02:00
parent 139fc994e2
commit bb7006bda1
1 changed files with 2 additions and 1 deletions

View File

@ -50,8 +50,9 @@ const UI = React.createClass({
handleDrop (e) {
e.preventDefault();
this.setState({ draggingOver: false });
if (e.dataTransfer && e.dataTransfer.files.length === 1) {
this.setState({ draggingOver: false });
this.props.dispatch(uploadCompose(e.dataTransfer.files));
}
},