Fix typo
This commit is contained in:
parent
52de322789
commit
880ae0f3fa
1 changed files with 1 additions and 1 deletions
|
@ -211,7 +211,7 @@ module.exports = React.createClass({
|
||||||
}
|
}
|
||||||
else if (ev.keyCode === KeyCode.UP || ev.keyCode === KeyCode.DOWN) {
|
else if (ev.keyCode === KeyCode.UP || ev.keyCode === KeyCode.DOWN) {
|
||||||
var oldSelectionStart = this.refs.textarea.selectionStart;
|
var oldSelectionStart = this.refs.textarea.selectionStart;
|
||||||
// Remember the keyboard because React will recycle the synthetic event
|
// Remember the keyCode because React will recycle the synthetic event
|
||||||
var keyCode = ev.keyCode;
|
var keyCode = ev.keyCode;
|
||||||
// set a callback so we can see if the cursor position changes as
|
// set a callback so we can see if the cursor position changes as
|
||||||
// a result of this event. If it doesn't, we cycle history.
|
// a result of this event. If it doesn't, we cycle history.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue