From 39fe2fd7b6f0fd79e7f75ae9d04ba20d74d8e2c5 Mon Sep 17 00:00:00 2001 From: Doubek-Kraft Date: Fri, 23 Jun 2017 16:04:34 -0700 Subject: [PATCH] [Layout] Code Style Issues --- platform/features/layout/src/elements/BoxProxy.js | 2 +- platform/features/layout/src/elements/ImageProxy.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/platform/features/layout/src/elements/BoxProxy.js b/platform/features/layout/src/elements/BoxProxy.js index d74003d171..1429605710 100644 --- a/platform/features/layout/src/elements/BoxProxy.js +++ b/platform/features/layout/src/elements/BoxProxy.js @@ -56,7 +56,7 @@ define( proxy.editWidth = new AccessorMutator(element, 'width', proxy.checkNumeric); proxy.editHeight = new AccessorMutator(element, 'height', proxy.checkNumeric); proxy.editX = new AccessorMutator(element, 'x', proxy.checkNumeric); - proxy.editY = new AccessorMutator(element,' y', proxy.checkNumeric); + proxy.editY = new AccessorMutator(element, 'y', proxy.checkNumeric); return proxy; } diff --git a/platform/features/layout/src/elements/ImageProxy.js b/platform/features/layout/src/elements/ImageProxy.js index d10ed64305..7664919187 100644 --- a/platform/features/layout/src/elements/ImageProxy.js +++ b/platform/features/layout/src/elements/ImageProxy.js @@ -53,7 +53,7 @@ define( proxy.editWidth = new AccessorMutator(element, 'width', proxy.checkNumeric); proxy.editHeight = new AccessorMutator(element, 'height', proxy.checkNumeric); proxy.editX = new AccessorMutator(element, 'x', proxy.checkNumeric); - proxy.editY = new AccessorMutator(element,' y', proxy.checkNumeric); + proxy.editY = new AccessorMutator(element, 'y', proxy.checkNumeric); return proxy; }