Skip to content

Commit bbaf697

Browse files
committed
Fix emoji textcomplete image path
1 parent 4bd5598 commit bbaf697

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

public/js/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3812,7 +3812,7 @@ $(editor.getInputField())
38123812
callback(list);
38133813
},
38143814
template: function (value) {
3815-
return '<img class="emoji" src="' + serverurl + '/vendor/emojify.js/dist/images/basic/' + value + '.png"></img> ' + value;
3815+
return '<img class="emoji" src="' + serverurl + '/build/emojify.js/dist/images/basic/' + value + '.png"></img> ' + value;
38163816
},
38173817
replace: function (value) {
38183818
return '$1:' + value + ': ';

0 commit comments

Comments
 (0)