From 11c42f8ee21a9149416ff295ed119bb14d6d5bfd Mon Sep 17 00:00:00 2001 From: Thomas FORGIONE Date: Tue, 26 May 2015 11:54:49 +0200 Subject: [PATCH] Revmoed logs --- js/PointerCamera.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/js/PointerCamera.js b/js/PointerCamera.js index 8678eb2..1f6eafc 100644 --- a/js/PointerCamera.js +++ b/js/PointerCamera.js @@ -389,13 +389,11 @@ History.prototype.addState = function(state) { ++this.index; this.size = this.index + 1; this.states[this.size-1] = state; - console.log('New state ' + this.index + ' / ' + this.size); } History.prototype.undo = function() { if (this.undoable()) { this.index--; - console.log('New state ' + this.index + ' / ' + this.size); return this.currentState(); } } @@ -403,7 +401,6 @@ History.prototype.undo = function() { History.prototype.redo = function() { if (this.redoable()) { this.index++; - console.log('New state ' + this.index + ' / ' + this.size); return this.currentState(); } }