2
0
Mr.doob 4 жил өмнө
parent
commit
e9e9bcda18

+ 1 - 1
src/extras/core/CurvePath.js

@@ -212,7 +212,7 @@ class CurvePath extends Curve {
 
 
 	toJSON() {
 	toJSON() {
 
 
-		const data = super.toJSON( );
+		const data = super.toJSON();
 
 
 		data.autoClose = this.autoClose;
 		data.autoClose = this.autoClose;
 		data.curves = [];
 		data.curves = [];

+ 1 - 1
src/extras/core/Path.js

@@ -171,7 +171,7 @@ class Path extends CurvePath {
 
 
 	toJSON() {
 	toJSON() {
 
 
-		const data = super.toJSON( );
+		const data = super.toJSON();
 
 
 		data.currentPoint = this.currentPoint.toArray();
 		data.currentPoint = this.currentPoint.toArray();
 
 

+ 1 - 1
src/extras/core/Shape.js

@@ -62,7 +62,7 @@ class Shape extends Path {
 
 
 	toJSON() {
 	toJSON() {
 
 
-		const data = super.toJSON( );
+		const data = super.toJSON();
 
 
 		data.uuid = this.uuid;
 		data.uuid = this.uuid;
 		data.holes = [];
 		data.holes = [];