diff options
author | Lauris BH <lauris@nix.lv> | 2017-10-23 11:48:56 +0300 |
---|---|---|
committer | Bo-Yi Wu <appleboy.tw@gmail.com> | 2017-10-23 03:48:56 -0500 |
commit | e4990ba205d56f7b6fda990d6c2d19a60b35fc56 (patch) | |
tree | d7f84345486bc02d7a54081ab9ba1e404a6c3357 | |
parent | a257f88a09eca5460e8a40f10eb04ff00ffa9c20 (diff) | |
download | gitea-e4990ba205d56f7b6fda990d6c2d19a60b35fc56.tar.gz gitea-e4990ba205d56f7b6fda990d6c2d19a60b35fc56.zip |
Fix emojify image URL (#2769)
-rw-r--r-- | public/js/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/js/index.js b/public/js/index.js index a8dbfd7b33..258db95540 100644 --- a/public/js/index.js +++ b/public/js/index.js @@ -1396,7 +1396,7 @@ $(document).ready(function () { // Emojify emojify.setConfig({ - img_dir: suburl + '/plugins/emojify/images', + img_dir: suburl + '/vendor/plugins/emojify/images', ignore_emoticons: true }); var hasEmoji = document.getElementsByClassName('has-emoji'); |