summaryrefslogtreecommitdiff
path: root/public/js/index.js
diff options
context:
space:
mode:
authorWu Cheng-Han2016-12-07 01:33:38 +0800
committerWu Cheng-Han2016-12-07 01:33:38 +0800
commitbbaf697687d9d06b2386502df069f806b0097338 (patch)
tree93dae0265d8a479d88cf6dd3ffac9a49ef1cad93 /public/js/index.js
parent4bd55985684b90b33932a6ce27b1ef9e2f3df610 (diff)
Fix emoji textcomplete image path
Diffstat (limited to 'public/js/index.js')
-rw-r--r--public/js/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/public/js/index.js b/public/js/index.js
index 361772d3..a2e0400e 100644
--- a/public/js/index.js
+++ b/public/js/index.js
@@ -3812,7 +3812,7 @@ $(editor.getInputField())
callback(list);
},
template: function (value) {
- return '<img class="emoji" src="' + serverurl + '/vendor/emojify.js/dist/images/basic/' + value + '.png"></img> ' + value;
+ return '<img class="emoji" src="' + serverurl + '/build/emojify.js/dist/images/basic/' + value + '.png"></img> ' + value;
},
replace: function (value) {
return '$1:' + value + ': ';