summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--web/react/components/create_comment.jsx6
-rw-r--r--web/react/components/create_post.jsx6
2 files changed, 6 insertions, 6 deletions
diff --git a/web/react/components/create_comment.jsx b/web/react/components/create_comment.jsx
index 7cbf6408d..99f553c0c 100644
--- a/web/react/components/create_comment.jsx
+++ b/web/react/components/create_comment.jsx
@@ -180,9 +180,9 @@ export default class CreateComment extends React.Component {
}
}
handleTextDrop(text) {
- const originalText = this.state.messageText;
- this.setState({messageText: originalText + text});
- React.findDOMNode(this.refs.textbox).focus();
+ const newText = this.state.messageText + text;
+ this.handleUserInput(newText);
+ Utils.setCaretPosition(React.findDOMNode(this.refs.textbox.refs.message), newText.length);
}
removePreview(id) {
let previews = this.state.previews;
diff --git a/web/react/components/create_post.jsx b/web/react/components/create_post.jsx
index 554e1ba35..595643027 100644
--- a/web/react/components/create_post.jsx
+++ b/web/react/components/create_post.jsx
@@ -232,9 +232,9 @@ export default class CreatePost extends React.Component {
}
}
handleTextDrop(text) {
- const originalText = this.state.messageText;
- this.setState({messageText: originalText + text});
- React.findDOMNode(this.refs.textbox).focus();
+ const newText = this.state.messageText + text;
+ this.handleUserInput(newText);
+ Utils.setCaretPosition(React.findDOMNode(this.refs.textbox.refs.message), newText.length);
}
removePreview(id) {
let previews = this.state.previews;