1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-01 15:09:14 +00:00

Bug repair (#2458)

This commit is contained in:
山水人家
2018-10-25 14:42:53 +08:00
committed by Daniel Pan
parent f3e0284751
commit 209237a22a
12 changed files with 80 additions and 91 deletions

View File

@@ -158,8 +158,8 @@ export const Utils = {
HTMLescape: function(html) {
return document.createElement('div')
.appendChild(document.createTextNode(html))
.parentNode
.innerHTML;
.appendChild(document.createTextNode(html))
.parentNode
.innerHTML;
},
};