Replace double spaces by a single space, to make behavior more uniform with nsIScriptableUnescapeHTML

This commit is contained in:
Simon Kornblith 2012-05-26 19:16:20 -04:00
parent e1edcb358a
commit 2ecc50f700

View File

@ -364,7 +364,7 @@ Zotero.Utilities = {
} else {
var node = document.createElement("div");
node.innerHTML = str;
return ("innerText" in node ? node.innerText : node.textContent);
return ("innerText" in node ? node.innerText : node.textContent).replace(/ {2,}/g, " ");
}
},