mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 21:24:59 +08:00
handle Escape properly
close autocomplete, and also replace with plain text part. also remove leftover logging
This commit is contained in:
parent
64b171198c
commit
ffff66a92d
@ -26,6 +26,11 @@ export default class AutocompleteWrapperModel {
|
||||
|
||||
onEscape(e) {
|
||||
this._getAutocompleterComponent().onEscape(e);
|
||||
this._updateCallback({
|
||||
replacePart: new PlainPart(this._queryPart.text),
|
||||
replaceCaret: this._queryOffset,
|
||||
close: true,
|
||||
});
|
||||
}
|
||||
|
||||
onEnter() {
|
||||
@ -37,12 +42,10 @@ export default class AutocompleteWrapperModel {
|
||||
}
|
||||
|
||||
onUpArrow() {
|
||||
console.log("onUpArrow");
|
||||
this._getAutocompleterComponent().onUpArrow();
|
||||
}
|
||||
|
||||
onDownArrow() {
|
||||
console.log("onDownArrow");
|
||||
this._getAutocompleterComponent().onDownArrow();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user