Fixed by a 'undefined' check.
if(typeof(inlineXSL)!="undefined") {
xmlString = inlineXSL[_1];
xmlString = xmlString.replace(/DOUBLE_QUOTE/g,"\"");
this.xslDom = (new DOMParser()).parseFromString(xmlString,
"text/xml");
}
else {
this.xslDom.load(xslUrl);
}
Sorry, I was codi
Hi all,
I noticed that as of r3048 the demos using XSL stylesheets break on line
44 in Util.js:
if(inlineXSL) {
xmlString = inlineXSL[_1];
xmlString = xmlString.replace(/DOUBLE_QUOTE/g,"\"");
this.xslDom = (new DOMParser()).parseFromString(xmlString, "text/xml");
}
inlineXSL is not