From: zuber Date: Tue, 12 Jan 2010 15:58:47 +0000 (+0100) Subject: Usunięcie komunikatów do debugowania z xslt.js. X-Git-Url: https://git.mdrn.pl/redakcja.git/commitdiff_plain/0f85687b659a680eaec03dedc7b0060731983463 Usunięcie komunikatów do debugowania z 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('')); }