diff options
author | modmew8 <modmew8@gmail.com> | 2018-02-03 09:09:35 +0100 |
---|---|---|
committer | Lauris BH <lauris@nix.lv> | 2018-02-03 10:09:35 +0200 |
commit | e08b3a592e80baeab1a6d7d5f87bed343ff14e1e (patch) | |
tree | feb7f19d723c3400398e2d5a19fccb81e13470cb /public/js/index.js | |
parent | b62ce2e24655e2d9316770d4eb342b823111fe0e (diff) | |
download | gitea-e08b3a592e80baeab1a6d7d5f87bed343ff14e1e.tar.gz gitea-e08b3a592e80baeab1a6d7d5f87bed343ff14e1e.zip |
Emoji Autocomplete (#3433)
* Implemented emoji autocomplete.
* Changed emoji access url.
* Reverted vendor css to default, moved all style changes to _tribute.less
* Made no-results overwriteable, added missing autocomplete to edit issue field.
Signed-off-by: modmew8 <modmew8@gmail.com>
Diffstat (limited to 'public/js/index.js')
-rw-r--r-- | public/js/index.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/public/js/index.js b/public/js/index.js index 9b67e59264..137e50f9ce 100644 --- a/public/js/index.js +++ b/public/js/index.js @@ -571,6 +571,7 @@ function initRepository() { $editContentZone.html($('#edit-content-form').html()); $textarea = $segment.find('textarea'); issuesTribute.attach($textarea.get()); + emojiTribute.attach($textarea.get()); // Give new write/preview data-tab name to distinguish from others var $editContentForm = $editContentZone.find('.ui.comment.form'); |