From a18acd43f5dccd4681f18004935ba85e88cc75f7 Mon Sep 17 00:00:00 2001 From: KJ Tsanaktsidis Date: Fri, 27 Feb 2015 15:20:32 +1100 Subject: [PATCH] YET MORE code style errors... --- src/static_canvas.class.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/static_canvas.class.js b/src/static_canvas.class.js index e37df57f..07eab335 100644 --- a/src/static_canvas.class.js +++ b/src/static_canvas.class.js @@ -1104,9 +1104,8 @@ //be transformed appropriately //i.e. it should be serialised as it would appear if the selection group //were to be destroyed. - var originalProperties = this._realizeGroupTransformOnObject(instance); - - var object = instance[methodName](propertiesToInclude); + var originalProperties = this._realizeGroupTransformOnObject(instance), + object = instance[methodName](propertiesToInclude); if (!this.includeDefaultValues) { instance.includeDefaultValues = originalValue; } @@ -1133,7 +1132,8 @@ }); this.getActiveGroup().realizeTransform(instance); return originalValues; - } else { + } + else { return null; } },