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; }