From 8c0733a14e0480f40b8f39933bccf4de94b11aa0 Mon Sep 17 00:00:00 2001 From: Ondřej Hruška Date: Wed, 20 Sep 2017 21:28:44 +0200 Subject: typo in comment --- app/javascript/mastodon/actions/compose.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/javascript') diff --git a/app/javascript/mastodon/actions/compose.js b/app/javascript/mastodon/actions/compose.js index 95336cea2..b47fbc8ba 100644 --- a/app/javascript/mastodon/actions/compose.js +++ b/app/javascript/mastodon/actions/compose.js @@ -230,9 +230,9 @@ export function fetchComposeSuggestions(token) { }); }; } else if (leading === ':') { - // mojos + // shortcode let allShortcodes = Object.keys(emojione.emojioneList); - // TODO when we have custom emojons merged, add theme to this shortcode list + // TODO when we have custom emojons merged, add them to this shortcode list return (dispatch) => { dispatch(readyComposeSuggestionsTxt(token, allShortcodes.filter((sc) => { return sc.indexOf(token) === 0; -- cgit