Remove left/right autocomplete navigation for MessageEditor
This commit is contained in:
parent
a4dec88c65
commit
8158567640
2 changed files with 0 additions and 12 deletions
|
@ -116,10 +116,6 @@ export default class MessageEditor extends React.Component {
|
||||||
autoComplete.onUpArrow(event); break;
|
autoComplete.onUpArrow(event); break;
|
||||||
case "ArrowDown":
|
case "ArrowDown":
|
||||||
autoComplete.onDownArrow(event); break;
|
autoComplete.onDownArrow(event); break;
|
||||||
case "ArrowLeft":
|
|
||||||
autoComplete.onLeftArrow(event); break;
|
|
||||||
case "ArrowRight":
|
|
||||||
autoComplete.onRightArrow(event); break;
|
|
||||||
case "Tab":
|
case "Tab":
|
||||||
autoComplete.onTab(event); break;
|
autoComplete.onTab(event); break;
|
||||||
case "Escape":
|
case "Escape":
|
||||||
|
|
|
@ -63,14 +63,6 @@ export default class AutocompleteWrapperModel {
|
||||||
this._getAutocompleterComponent().moveSelection(+1);
|
this._getAutocompleterComponent().moveSelection(+1);
|
||||||
}
|
}
|
||||||
|
|
||||||
onLeftArrow() {
|
|
||||||
this._getAutocompleterComponent().moveSelection(-1);
|
|
||||||
}
|
|
||||||
|
|
||||||
onRightArrow() {
|
|
||||||
this._getAutocompleterComponent().moveSelection(+1);
|
|
||||||
}
|
|
||||||
|
|
||||||
onPartUpdate(part, offset) {
|
onPartUpdate(part, offset) {
|
||||||
// cache the typed value and caret here
|
// cache the typed value and caret here
|
||||||
// so we can restore it in onComponentSelectionChange when the value is undefined (meaning it should be the typed text)
|
// so we can restore it in onComponentSelectionChange when the value is undefined (meaning it should be the typed text)
|
||||||
|
|
Loading…
Reference in a new issue