Usunięcie komunikatów do debugowania z xslt.js.
authorzuber <marek@stepniowski.com>
Tue, 12 Jan 2010 15:58:47 +0000 (16:58 +0100)
committerzuber <marek@stepniowski.com>
Tue, 12 Jan 2010 15:58:47 +0000 (16:58 +0100)
platforma/static/js/xslt.js

index 48543e6..f6ddb87 100644 (file)
@@ -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('<p>Wystąpił błąd:</p>' + error.text());
         } else {
             options.success(serialize(doc.documentElement).join(''));                              
         }