X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/08ac3f0d191e2cb759ba6e2b5ceaa730d1a26717..793b39c86e9583467f1cbc41f8b1a4677d079f23:/redakcja/static/js/wiki/xslt.js?ds=sidebyside diff --git a/redakcja/static/js/wiki/xslt.js b/redakcja/static/js/wiki/xslt.js index c7b846b5..ce7614df 100644 --- a/redakcja/static/js/wiki/xslt.js +++ b/redakcja/static/js/wiki/xslt.js @@ -17,7 +17,7 @@ function withStylesheets(code_block, onError) if (!xml2htmlStylesheet) { $.blockUI({message: 'Ładowanie arkuszy stylów...'}); $.ajax({ - url: STATIC_URL + 'xsl/wl2html_client.xsl?20110112', + url: STATIC_URL + 'xsl/wl2html_client.xsl?20110520', dataType: 'xml', timeout: 10000, success: function(data) { @@ -255,6 +255,11 @@ HTMLSerializer.prototype.serialize = function(rootElement, stripOuter) self.result += text_buffer; text_buffer = token.node.nodeValue; break; + case COMMENT_NODE: + self.result += text_buffer; + text_buffer = ''; + self.result += ''; + break; }; }; self.result += text_buffer;