소스 검색

removed console.logs

Daniel 10 년 전
부모
커밋
0f6bfea489
1개의 변경된 파일0개의 추가작업 그리고 2개의 파일을 삭제
  1. 0 2
      editor/js/History.js

+ 0 - 2
editor/js/History.js

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