Răsfoiți Sursa

removed console.logs

Daniel 9 ani în urmă
părinte
comite
0f6bfea489
1 a modificat fișierele cu 0 adăugiri și 2 ștergeri
  1. 0 2
      editor/js/History.js

+ 0 - 2
editor/js/History.js

@@ -106,7 +106,6 @@ History.prototype = {
 		if ( cmd !== undefined ) {
 		if ( cmd !== undefined ) {
 
 
 			cmd.undo();
 			cmd.undo();
-			console.log('Type: Undo ' + cmd.type );
 			this.redos.push( cmd );
 			this.redos.push( cmd );
 			this.editor.signals.historyChanged.dispatch( cmd );
 			this.editor.signals.historyChanged.dispatch( cmd );
 
 
@@ -145,7 +144,6 @@ History.prototype = {
 		if ( cmd !== undefined ) {
 		if ( cmd !== undefined ) {
 
 
 			cmd.execute();
 			cmd.execute();
-			console.log('Type: Redo ' + cmd.type );
 			this.undos.push( cmd );
 			this.undos.push( cmd );
 			this.editor.signals.historyChanged.dispatch( cmd );
 			this.editor.signals.historyChanged.dispatch( cmd );