fix show special chars in url textarea

This commit is contained in:
qkqpttgf
2021-10-20 11:34:14 +08:00
committed by GitHub
parent 239ddea6f3
commit a3108ad6e9
+4 -1
View File
@@ -529,7 +529,10 @@
<!--IsFileStart-->
var $url = document.getElementById('url');
if ($url) {
$url.innerHTML = location.protocol + '//' + location.host + $url.innerHTML;
//$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-->