Browse Source

Editor: Fix ctor call of Command.

Mugen87 6 năm trước cách đây
mục cha
commit
6509b0076a
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      editor/js/commands/SetColorCommand.js

+ 1 - 1
editor/js/commands/SetColorCommand.js

@@ -13,7 +13,7 @@
 
 var SetColorCommand = function ( editor, object, attributeName, newValue ) {
 
-	Command.call( editor, this );
+	Command.call( this, editor );
 
 	this.type = 'SetColorCommand';
 	this.name = 'Set ' + attributeName;