summaryrefslogtreecommitdiffstats
path: root/web/react/components/create_comment.jsx
diff options
context:
space:
mode:
authorhmhealey <harrisonmhealey@gmail.com>2016-02-04 11:32:39 -0500
committerhmhealey <harrisonmhealey@gmail.com>2016-02-04 14:49:10 -0500
commitc11446657f96a155a5dd0790357c992ed719973e (patch)
treead5521cdf7178e5fb5720555fc4783d7aec5b3fa /web/react/components/create_comment.jsx
parenteec9f88110a83083ecd68a1d33e36a65b373bdc5 (diff)
downloadchat-c11446657f96a155a5dd0790357c992ed719973e.tar.gz
chat-c11446657f96a155a5dd0790357c992ed719973e.tar.bz2
chat-c11446657f96a155a5dd0790357c992ed719973e.zip
Added code to refocus on the post/comment textbox after a file is drag and dropped
Diffstat (limited to 'web/react/components/create_comment.jsx')
-rw-r--r--web/react/components/create_comment.jsx4
1 files changed, 4 insertions, 0 deletions
diff --git a/web/react/components/create_comment.jsx b/web/react/components/create_comment.jsx
index 387d5bd8b..797b98ce2 100644
--- a/web/react/components/create_comment.jsx
+++ b/web/react/components/create_comment.jsx
@@ -229,6 +229,10 @@ class CreateComment extends React.Component {
PostStore.storeCommentDraft(this.props.rootId, draft);
this.setState({uploadsInProgress: draft.uploadsInProgress});
+
+ // this is a bit redundant with the code that sets focus when the file input is clicked,
+ // but this also resets the focus after a drag and drop
+ this.refs.textbox.focus();
}
handleFileUploadComplete(filenames, clientIds) {
let draft = PostStore.getCommentDraft(this.props.rootId);