Add back on..Arrow functions. Add left/right key navigation in MessageEditor
This commit is contained in:
parent
ed6427571e
commit
a4dec88c65
2 changed files with 20 additions and 0 deletions
|
@ -116,6 +116,10 @@ export default class MessageEditor extends React.Component {
|
|||
autoComplete.onUpArrow(event); break;
|
||||
case "ArrowDown":
|
||||
autoComplete.onDownArrow(event); break;
|
||||
case "ArrowLeft":
|
||||
autoComplete.onLeftArrow(event); break;
|
||||
case "ArrowRight":
|
||||
autoComplete.onRightArrow(event); break;
|
||||
case "Tab":
|
||||
autoComplete.onTab(event); break;
|
||||
case "Escape":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue