Browse Source

Ignore keyevents during text composition (#7205)

KeyboardEvent.key may be physical key name (Escape, Tab, etc.)
even in text composition and it causes hotkeys or suggestion selection.
So we need to check e.which or e.isComposing.

Checking e.which also allows us to avoid Esc key on compositionend in Safari.
pull/4/head
unarist 6 years ago
committed by Eugen Rochko
parent
commit
84214b864c
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      app/javascript/mastodon/components/autosuggest_textarea.js

+ 6
- 0
app/javascript/mastodon/components/autosuggest_textarea.js View File

@ -84,6 +84,12 @@ export default class AutosuggestTextarea extends ImmutablePureComponent {
return;
}
if (e.which === 229 || e.isComposing) {
// Ignore key events during text composition
// e.key may be a name of the physical key even in this case (e.x. Safari / Chrome on Mac)
return;
}
switch(e.key) {
case 'Escape':
if (suggestions.size === 0 || suggestionsHidden) {

Loading…
Cancel
Save