Use textContent to avoid manual escaping

This commit is contained in:
Linus Unnebäck 2017-02-16 16:28:00 +01:00 committed by GitHub
parent 2913e13a30
commit b24fac3dd8
1 changed files with 1 additions and 1 deletions

View File

@ -1297,7 +1297,7 @@ RED.view = (function() {
sp.className = className;
sp.style.position = "absolute";
sp.style.top = "-1000px";
sp.innerHTML = (str||"").replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;");
sp.textContent = (str||"");
document.body.appendChild(sp);
var w = sp.offsetWidth;
document.body.removeChild(sp);