[Case 6491] eslint pass: Fixes no-multiple-empty-lines issues.

* eslint pass using .eslintrc.js

Changes Committed:
	modified:   scripts/system/libraries/entitySelectionTool.js
This commit is contained in:
LaShonda Hopper 2017-10-04 20:44:47 -04:00
parent e9ae2099f3
commit 18d884f6c4

View file

@ -2016,7 +2016,6 @@ SelectionDisplay = (function() {
}// end of isSingleSelection
Overlays.editOverlay(grabberLBN, {
visible: stretchHandlesVisible,
rotation: rotation,
@ -2515,7 +2514,6 @@ SelectionDisplay = (function() {
cornerPosition);
for (var i = 0; i < SelectionManager.selections.length; i++) {
var properties = SelectionManager.savedProperties[SelectionManager.selections[i]];
if (!properties) {
@ -2639,7 +2637,6 @@ SelectionDisplay = (function() {
});
// FUNCTION: VEC 3 MULT
var vec3Mult = function(v1, v2) {
return {
@ -2677,8 +2674,7 @@ SelectionDisplay = (function() {
y: Math.abs(direction.y) > 0 ? 1 : 0,
z: Math.abs(direction.z) > 0 ? 1 : 0
};
var numDimensions = mask.x + mask.y + mask.z;
@ -4187,7 +4183,6 @@ SelectionDisplay = (function() {
Controller.mouseReleaseEvent.connect(that.mouseReleaseEvent);
return that;
}());