aboutsummaryrefslogtreecommitdiff
path: root/src/main.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.js')
-rw-r--r--src/main.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/main.js b/src/main.js
index d1f99fa5..a13569d6 100644
--- a/src/main.js
+++ b/src/main.js
@@ -102,3 +102,13 @@ window.fetch('/static/terms-of-service.html')
.then((html) => {
store.dispatch('setOption', { name: 'tos', value: html })
})
+
+window.fetch('/static/emoji.txt')
+ .then((res) => res.text())
+ .then((csv) => {
+ const emoji = csv.split('\n').map((row) => {
+ const values = row.split(', ')
+ return { shortcode: values[0], url: values[1] }
+ })
+ store.dispatch('setOption', { name: 'emoji', value: emoji })
+ })