fix: url in preview

This commit is contained in:
qkqpttgf
2021-12-22 20:43:00 +08:00
committed by GitHub
parent 0843eb7955
commit 6cbeaa4a09
+3 -1
View File
@@ -558,7 +558,9 @@
<!--IsFileStart-->
var $url = document.getElementById('url');
if ($url) {
$url.innerHTML = location.protocol + '//' + location.host + $url.innerHTML;
let url = location.href;
url = url.substr(0, url.length-8);
$url.innerHTML = url.replace(/&amp;/g, '&amp;amp;');
$url.style.height = $url.scrollHeight + 'px';
}
<!--IsofficeFileStart-->