summaryrefslogtreecommitdiffstats
path: root/web/react
diff options
context:
space:
mode:
authorReed Garmsen <rgarmsen2295@gmail.com>2015-09-23 15:12:23 -0700
committerReed Garmsen <rgarmsen2295@gmail.com>2015-09-23 15:41:26 -0700
commitef8705ab6b9f11da77d8056e68b9fc2adb2ef496 (patch)
treee6a5ab1b6c716b0bae00dcee89f5f3509e78fd0c /web/react
parent03eece597d491ed9069fc684a03a980d9250844a (diff)
downloadchat-ef8705ab6b9f11da77d8056e68b9fc2adb2ef496.tar.gz
chat-ef8705ab6b9f11da77d8056e68b9fc2adb2ef496.tar.bz2
chat-ef8705ab6b9f11da77d8056e68b9fc2adb2ef496.zip
Text cursor now focuses on the textbox after performing a drag and drop of some text
Diffstat (limited to 'web/react')
-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;