[Layout] Code Style Issues

This commit is contained in:
Doubek-Kraft 2017-06-23 16:04:34 -07:00 committed by Aaron Doubek-Kraft
parent 65993bd77f
commit 515ea7caf8
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.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;
}

View File

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