summaryrefslogtreecommitdiffstats
path: root/web/react/components/suggestion/suggestion_box.jsx
diff options
context:
space:
mode:
authorhmhealey <harrisonmhealey@gmail.com>2015-12-09 09:14:46 -0500
committerhmhealey <harrisonmhealey@gmail.com>2015-12-09 09:14:46 -0500
commitc7e84696f568cf87dd1bbde795773a1dda203183 (patch)
tree819bf329e8a167d610dfaddb20ba0a843e277660 /web/react/components/suggestion/suggestion_box.jsx
parentf006951959acad76c8626d85fac3521d302bb0ee (diff)
downloadchat-c7e84696f568cf87dd1bbde795773a1dda203183.tar.gz
chat-c7e84696f568cf87dd1bbde795773a1dda203183.tar.bz2
chat-c7e84696f568cf87dd1bbde795773a1dda203183.zip
Removed space bar from autocompletes
Diffstat (limited to 'web/react/components/suggestion/suggestion_box.jsx')
-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 ad8ad1e9e..57a33c24a 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.TAB || (e.which === KeyCodes.SPACE && SuggestionStore.shouldCompleteOnSpace(this.suggestionId))) {
+ } else if (e.which === KeyCodes.ENTER || e.which === KeyCodes.TAB) {
EventHelpers.emitCompleteWordSuggestion(this.suggestionId);
e.preventDefault();
} else if (this.props.onKeyDown) {