summaryrefslogtreecommitdiffstats
path: root/webapp/components/file_upload.jsx
diff options
context:
space:
mode:
authorSaturnino Abril <saturnino.abril@gmail.com>2017-02-23 17:57:41 +0900
committerGeorge Goldberg <george@gberg.me>2017-02-23 08:57:41 +0000
commitf6d22ee4f0b7f4954cbad17986f06f9a5f096e72 (patch)
tree62d9e570483b71e92ebdfa6f38eec70877468169 /webapp/components/file_upload.jsx
parent9220254f05b6200de2e8ac78476a8df536c821ec (diff)
downloadchat-f6d22ee4f0b7f4954cbad17986f06f9a5f096e72.tar.gz
chat-f6d22ee4f0b7f4954cbad17986f06f9a5f096e72.tar.bz2
chat-f6d22ee4f0b7f4954cbad17986f06f9a5f096e72.zip
[PLT-5445] Mobile view: Set focus back to message box after uploading a file (#5360)
Diffstat (limited to 'webapp/components/file_upload.jsx')
-rw-r--r--webapp/components/file_upload.jsx7
1 files changed, 7 insertions, 0 deletions
diff --git a/webapp/components/file_upload.jsx b/webapp/components/file_upload.jsx
index a821fedab..5710f2365 100644
--- a/webapp/components/file_upload.jsx
+++ b/webapp/components/file_upload.jsx
@@ -126,6 +126,8 @@ class FileUpload extends React.Component {
Utils.clearFileInput(e.target);
}
+
+ this.props.onFileUploadChange();
}
handleDrop(e) {
@@ -190,6 +192,8 @@ class FileUpload extends React.Component {
self.handleDrop(e);
}
});
+
+ this.props.onFileUploadChange();
}
componentWillUnmount() {
@@ -289,6 +293,8 @@ class FileUpload extends React.Component {
this.props.onUploadStart([clientId], channelId);
}
}
+
+ this.props.onFileUploadChange();
}
keyUpload(e) {
@@ -369,6 +375,7 @@ FileUpload.propTypes = {
onClick: React.PropTypes.func,
onFileUpload: React.PropTypes.func,
onUploadStart: React.PropTypes.func,
+ onFileUploadChange: React.PropTypes.func,
onTextDrop: React.PropTypes.func,
channelId: React.PropTypes.string,
postType: React.PropTypes.string