From 6ada3cb4fc08da8a0e0a2d0bb96140f2f72242d1 Mon Sep 17 00:00:00 2001 From: Fabrice Ecaille Date: Mon, 7 Oct 2013 13:17:38 +0200 Subject: [PATCH] Clean: remove logs --- js/spaceinvaders-models.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/js/spaceinvaders-models.js b/js/spaceinvaders-models.js index 6c3616f..07f5896 100644 --- a/js/spaceinvaders-models.js +++ b/js/spaceinvaders-models.js @@ -102,7 +102,6 @@ function CornWeapon() { this.load = 1; this.max_load = 1; this.callback = function(shot) { - console.log( "CornWeapon.callback", this, shot ); var higherAlien = Math.max.apply( null, $(".alien").map(function() { return $(this).y(); @@ -114,7 +113,6 @@ function CornWeapon() { mediumAlien = (higherAlien + lowerAlien) / 2; if( shot.y() < mediumAlien ) { - console.log( "KABOUM" ); shot.remove(); } }