Daniel пре 10 година
родитељ
комит
a8af0407b9
1 измењених фајлова са 3 додато и 3 уклоњено
  1. 3 3
      editor/docs/Implementing additional commands for undo-redo.md

+ 3 - 3
editor/docs/Implementing additional commands for undo-redo.md

@@ -88,11 +88,11 @@ have to implement a fifth function 'update' as part of the prototype. In it only
 
 Here as an example is the update-function of **CmdSetColor**:
 ```javascript
-	update: function ( cmd ) {
+update: function ( cmd ) {
 
-		this.newValue = cmd.newValue;
+	this.newValue = cmd.newValue;
 
-	},
+},
 
 ```