Skip to content

Commit

Permalink
⬆️ fix #46
Browse files Browse the repository at this point in the history
  • Loading branch information
Vanessa219 committed Mar 26, 2021
1 parent 2b15a5b commit 5e7a2b4
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@
"gulp-uglify": "^3.0.2"
},
"dependencies": {
"vditor": "^3.8.3"
"vditor": "^3.8.4"
}
}
5 changes: 3 additions & 2 deletions src/main/resources/js/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -676,6 +676,7 @@ var Util = {
},
lang: Label.langLabel,
hint: {
parse: false,
emojiTail: '<a href="' + Label.servePath +
'/settings/function" target="_blank">设置常用表情</a>',
emoji: Label.emoji,
Expand All @@ -693,7 +694,7 @@ var Util = {
if (result.code === 0) {
for (var i = 0; i < result.data.length; i++) {
atUsers.push({
value: '@' + result.data[i].userName,
value: '@' + result.data[i].userName + " ",
html: '<img src="' + result.data[i].userAvatarURL +
'"/>' +
result.data[i].userName,
Expand All @@ -703,7 +704,7 @@ var Util = {
atUsers.push({
html: '<img src="' + Label.staticServePath +
'/images/user-thumbnail.png"/> 参与者',
value: '@participants',
value: '@participants ',
})
}
} else {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/js/common.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/main/resources/skins/classic/footer.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@

<script src="${staticServePath}/js/symbol-defs${miniPostfix}.js?${staticResourceVersion}"></script>
<script src="${staticServePath}/js/lib/compress/libs.min.js?${staticResourceVersion}"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].3/dist/index.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].4/dist/index.min.js"></script>
<script src="${staticServePath}/js/common${miniPostfix}.js?${staticResourceVersion}"></script>
<script>
var Label = {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/skins/mobile/footer.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
</div>
<script src="${staticServePath}/js/symbol-defs${miniPostfix}.js?${staticResourceVersion}"></script>
<script src="${staticServePath}/js/lib/compress/libs.min.js?${staticResourceVersion}"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].3/dist/index.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].4/dist/index.min.js"></script>
<script src="${staticServePath}/js/common${miniPostfix}.js?${staticResourceVersion}"></script>
<script>
var Label = {
Expand Down

0 comments on commit 5e7a2b4

Please sign in to comment.