summaryrefslogtreecommitdiffstats
path: root/web/react/components/suggestion
diff options
context:
space:
mode:
authorFlorian Orben <florian.orben@gmail.com>2015-12-04 23:50:55 +0100
committerFlorian Orben <florian.orben@gmail.com>2015-12-04 23:50:55 +0100
commit896b401a195deb6fd724e608812b6a9d4b9dc24b (patch)
treef8713513708ee904c311fd3f71243cf5795d6f2a /web/react/components/suggestion
parent1bee1e06e4d0110db274c076860fa97f76471ddb (diff)
downloadchat-896b401a195deb6fd724e608812b6a9d4b9dc24b.tar.gz
chat-896b401a195deb6fd724e608812b6a9d4b9dc24b.tar.bz2
chat-896b401a195deb6fd724e608812b6a9d4b9dc24b.zip
autocomplete component should enter suggestions on 'tab'
Diffstat (limited to 'web/react/components/suggestion')
-rw-r--r--web/react/components/suggestion/suggestion_box.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/components/suggestion/suggestion_box.jsx b/web/react/components/suggestion/suggestion_box.jsx
index 4cfb38f8e..ad8ad1e9e 100644
--- a/web/react/components/suggestion/suggestion_box.jsx
+++ b/web/react/components/suggestion/suggestion_box.jsx
@@ -94,7 +94,7 @@ export default class SuggestionBox extends React.Component {
} else if (e.which === KeyCodes.DOWN) {
EventHelpers.emitSelectNextSuggestion(this.suggestionId);
e.preventDefault();
- } else if (e.which === KeyCodes.ENTER || (e.which === KeyCodes.SPACE && SuggestionStore.shouldCompleteOnSpace(this.suggestionId))) {
+ } else if (e.which === KeyCodes.ENTER || e.which === KeyCodes.TAB || (e.which === KeyCodes.SPACE && SuggestionStore.shouldCompleteOnSpace(this.suggestionId))) {
EventHelpers.emitCompleteWordSuggestion(this.suggestionId);
e.preventDefault();
} else if (this.props.onKeyDown) {