cleaning console.log
authorrougeronj
Tue, 16 Jun 2015 11:38:38 +0200
changeset 485 a95d4a631bcf
parent 484 cfe440ade6d6
child 486 f1ff0529ba41
cleaning console.log
client/js/dataloader.js
--- a/client/js/dataloader.js	Tue Jun 16 11:38:22 2015 +0200
+++ b/client/js/dataloader.js	Tue Jun 16 11:38:38 2015 +0200
@@ -11,7 +11,6 @@
                     for(i=0, len=data.nodes.length; i<len; i++) {
                         var node = data.nodes[i];
                         if(node.color) {
-                            console.log("node color : ", node.color);
                             node.style = {
                                 color: node.color,
                             };
@@ -56,7 +55,6 @@
         if (schemaVersionFrom !== schemaVersionTo) {
             var converterName = "from" + schemaVersionFrom + "to" + schemaVersionTo;
             if (typeof this.dataConverters[converterName] === 'function') {
-                console.log("Apply conversion function :", converterName);
                 data = this.dataConverters[converterName](data);
             }
         }