remove faulty onBlur/onFocus code which caused selection to rollback
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
020e714b85
commit
265e4267b8
1 changed files with 0 additions and 14 deletions
|
@ -1544,18 +1544,6 @@ export default class MessageComposerInput extends React.Component {
|
||||||
this.handleKeyCommand('toggle-mode');
|
this.handleKeyCommand('toggle-mode');
|
||||||
};
|
};
|
||||||
|
|
||||||
onBlur = (e) => {
|
|
||||||
this.selection = this.state.editorState.selection;
|
|
||||||
};
|
|
||||||
|
|
||||||
onFocus = (e) => {
|
|
||||||
if (this.selection) {
|
|
||||||
const change = this.state.editorState.change().select(this.selection);
|
|
||||||
this.onChange(change);
|
|
||||||
delete this.selection;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
focusComposer = () => {
|
focusComposer = () => {
|
||||||
this.refs.editor.focus();
|
this.refs.editor.focus();
|
||||||
};
|
};
|
||||||
|
@ -1601,8 +1589,6 @@ export default class MessageComposerInput extends React.Component {
|
||||||
onChange={this.onChange}
|
onChange={this.onChange}
|
||||||
onKeyDown={this.onKeyDown}
|
onKeyDown={this.onKeyDown}
|
||||||
onPaste={this.onPaste}
|
onPaste={this.onPaste}
|
||||||
onBlur={this.onBlur}
|
|
||||||
onFocus={this.onFocus}
|
|
||||||
renderNode={this.renderNode}
|
renderNode={this.renderNode}
|
||||||
renderMark={this.renderMark}
|
renderMark={this.renderMark}
|
||||||
// disable spell check for the placeholder because browsers don't like "unencrypted"
|
// disable spell check for the placeholder because browsers don't like "unencrypted"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue