X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/7d20ecc106db40a3c033bdc6260376628a24c0e2..0f85687b659a680eaec03dedc7b0060731983463:/platforma/static/js/xslt.js diff --git a/platforma/static/js/xslt.js b/platforma/static/js/xslt.js index 48543e6e..f6ddb878 100644 --- a/platforma/static/js/xslt.js +++ b/platforma/static/js/xslt.js @@ -168,8 +168,6 @@ function xml2html(options) { if (error.length > 0 && options.error) { options.error(error.text()); } else { - // console.log(options.xml); - console.log(doc, doc.firstChild); options.success(doc.firstChild); } }, function() { options.error && options.error('Nie udało się załadować XSLT'); }); @@ -191,8 +189,6 @@ function html2xml(options) { if (error.length > 0 && options.error) { options.error(error.text()); - console.log(error); - $('#source-editor').html('

Wystąpił błąd:

' + error.text()); } else { options.success(serialize(doc.documentElement).join('')); }