From d7ce339c2e33a5607c21d3eff316669cff9c6ea3 Mon Sep 17 00:00:00 2001 From: kibigo! Date: Thu, 4 Jan 2018 21:17:30 -0800 Subject: WIP Refactor; Fin~ --- app/javascript/flavours/glitch/features/composer/textarea/index.js | 2 +- .../glitch/features/composer/textarea/suggestions/item/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'app/javascript/flavours/glitch/features') diff --git a/app/javascript/flavours/glitch/features/composer/textarea/index.js b/app/javascript/flavours/glitch/features/composer/textarea/index.js index 1b6f79bba..955c06098 100644 --- a/app/javascript/flavours/glitch/features/composer/textarea/index.js +++ b/app/javascript/flavours/glitch/features/composer/textarea/index.js @@ -32,7 +32,7 @@ const handlers = { // When blurring the textarea, suggestions are hidden. handleBlur () { - this.setState({ suggestionsHidden: true }); + //this.setState({ suggestionsHidden: true }); }, // When the contents of the textarea change, we have to pull up new diff --git a/app/javascript/flavours/glitch/features/composer/textarea/suggestions/item/index.js b/app/javascript/flavours/glitch/features/composer/textarea/suggestions/item/index.js index dc057e679..d2c794ae9 100644 --- a/app/javascript/flavours/glitch/features/composer/textarea/suggestions/item/index.js +++ b/app/javascript/flavours/glitch/features/composer/textarea/suggestions/item/index.js @@ -7,7 +7,7 @@ import React from 'react'; import AccountContainer from 'flavours/glitch/containers/account_container'; // Utils. -import { unicodeMapping } from 'flavours/glitch/util/emoji/emoji_unicode_mapping_light'; +import { unicodeMapping } from 'flavours/glitch/util/emoji'; import { assignHandlers } from 'flavours/glitch/util/react_helpers'; // Gets our asset host from the environment, if available. -- cgit