[Case 6491] eslint pass: fixes undefined center var in that.updateHandles.

* eslint pass using .eslintrc.js

Changes Committed:
	modified:   scripts/system/libraries/entitySelectionTool.js
This commit is contained in:
LaShonda Hopper 2017-10-02 12:31:10 -04:00
parent dbf8d19095
commit a610946af1

View file

@ -1646,7 +1646,7 @@ SelectionDisplay = (function() {
};
// Center of entity, relative to registration point
center = getRelativeCenterPosition(dimensions, registrationPoint);
var center = getRelativeCenterPosition(dimensions, registrationPoint);
// Distances in world coordinates relative to the registration point
var left = -registrationPointDimensions.x;