Browse Source

clean log

Maxim Sokhatsky 11 years ago
parent
commit
85f556e660

+ 0 - 1
apps/web/priv/static/app/js/bootloader.js

@@ -17,7 +17,6 @@ function statsRow(start_x,start_y,i,games) {
 }
 
 function gameresultRow(start_x,start_y,i,results) {
-   console.log(results[i].value[0][3]);
      var round = results[i].value[0][2],
          total = results[i].value[0][3];
          round = round > 500000 ? -Math.round(round/1000000) : round;

+ 0 - 2
apps/web/priv/static/app/js/okey/okey.js

@@ -220,8 +220,6 @@ function PostLoad()
 
     scope.apiProvider.on("okey_round_ended", function(x) {
         var e = {detail: x.detail.json, raw: x.detail.bert};
-        console.log(String(dec(e.raw)));
-        console.log(e.detail);
         var gameres = dec(e.raw).value[0][3][2].value[0][1];
         $("#Overlay-Results").empty();
         for (var i=0;i<gameres.length;i++) { gameresultRow(400,130,i,gameres); }