correcting white-space: Firefox does not like it

This commit is contained in:
Danny Yoo 2012-03-22 17:45:19 -04:00
parent 4843664059
commit ce7a998ba8
2 changed files with 1 additions and 2 deletions

View File

@ -21,7 +21,6 @@
(xexp->dom '(h1 "Google Maps demonstration")) (xexp->dom '(h1 "Google Maps demonstration"))
(big-bang "???" (big-bang "???"

View File

@ -389,7 +389,7 @@
if (typeof(x) === 'string') { if (typeof(x) === 'string') {
var wrapper = document.createElement("span"); var wrapper = document.createElement("span");
wrapper.style["white-space"] = "pre"; wrapper.style.whiteSpace = "pre";
if (params.getMode() === 'write' || params.getMode() === 'print' || params.getMode() === 'constructor') { if (params.getMode() === 'write' || params.getMode() === 'print' || params.getMode() === 'constructor') {
node = document.createTextNode(toWrittenString(x)); node = document.createTextNode(toWrittenString(x));
} else { } else {