diff options
author | 6543 <24977596+6543@users.noreply.github.com> | 2019-11-14 14:44:46 +0100 |
---|---|---|
committer | Antoine GIRARD <sapk@users.noreply.github.com> | 2019-11-14 14:44:46 +0100 |
commit | a3e42bfebd0a2997deacd99a7d0a75633de814ed (patch) | |
tree | dc2b76286c3069c20c58959cd860a7230f63839d /templates | |
parent | 1716150cedf58c8cf9bdf4d0a136393577f5a0ea (diff) | |
download | gitea-a3e42bfebd0a2997deacd99a7d0a75633de814ed.tar.gz gitea-a3e42bfebd0a2997deacd99a7d0a75633de814ed.zip |
[Feature] Add Gitea Emoji (#8950)
* add gitea emoji
* alphabetic order
* Update emojify.js to 1.1.0
* mv to custom
* add gitea emoji
* minify
Diffstat (limited to 'templates')
-rw-r--r-- | templates/base/footer.tmpl | 2 | ||||
-rw-r--r-- | templates/pwa/serviceworker_js.tmpl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/base/footer.tmpl b/templates/base/footer.tmpl index 770fcf005e..f777b0e6f5 100644 --- a/templates/base/footer.tmpl +++ b/templates/base/footer.tmpl @@ -117,7 +117,7 @@ } </script> {{end}} - <script src="{{StaticUrlPrefix}}/vendor/plugins/emojify/emojify.min.js"></script> + <script src="{{StaticUrlPrefix}}/vendor/plugins/emojify/emojify.custom.js"></script> <script src="{{StaticUrlPrefix}}/vendor/plugins/clipboard/clipboard.min.js"></script> <script src="{{StaticUrlPrefix}}/vendor/plugins/vue/vue.min.js"></script> diff --git a/templates/pwa/serviceworker_js.tmpl b/templates/pwa/serviceworker_js.tmpl index dc2453e3d8..113e76dfbe 100644 --- a/templates/pwa/serviceworker_js.tmpl +++ b/templates/pwa/serviceworker_js.tmpl @@ -11,7 +11,7 @@ var urlsToCache = [ '{{StaticUrlPrefix}}/vendor/plugins/clipboard/clipboard.min.js', '{{StaticUrlPrefix}}/vendor/plugins/gitgraph/gitgraph.js', '{{StaticUrlPrefix}}/vendor/plugins/vue/vue.min.js', - '{{StaticUrlPrefix}}/vendor/plugins/emojify/emojify.min.js', + '{{StaticUrlPrefix}}/vendor/plugins/emojify/emojify.custom.js', '{{StaticUrlPrefix}}/vendor/plugins/cssrelpreload/loadCSS.min.js', '{{StaticUrlPrefix}}/vendor/plugins/cssrelpreload/cssrelpreload.min.js', '{{StaticUrlPrefix}}/vendor/plugins/dropzone/dropzone.js', |