[Layout] Code Style Issues

This commit is contained in:
Doubek-Kraft 2017-06-23 16:04:34 -07:00
parent b661b4737e
commit 39fe2fd7b6
2 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ define(
proxy.editWidth = new AccessorMutator(element, 'width', proxy.checkNumeric); proxy.editWidth = new AccessorMutator(element, 'width', proxy.checkNumeric);
proxy.editHeight = new AccessorMutator(element, 'height', proxy.checkNumeric); proxy.editHeight = new AccessorMutator(element, 'height', proxy.checkNumeric);
proxy.editX = new AccessorMutator(element, 'x', 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; return proxy;
} }

View File

@ -53,7 +53,7 @@ define(
proxy.editWidth = new AccessorMutator(element, 'width', proxy.checkNumeric); proxy.editWidth = new AccessorMutator(element, 'width', proxy.checkNumeric);
proxy.editHeight = new AccessorMutator(element, 'height', proxy.checkNumeric); proxy.editHeight = new AccessorMutator(element, 'height', proxy.checkNumeric);
proxy.editX = new AccessorMutator(element, 'x', 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; return proxy;
} }