mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-05 17:53:51 +02:00
[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:
parent
e9ae2099f3
commit
18d884f6c4
1 changed files with 1 additions and 6 deletions
|
@ -2016,7 +2016,6 @@ SelectionDisplay = (function() {
|
||||||
}// end of isSingleSelection
|
}// end of isSingleSelection
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Overlays.editOverlay(grabberLBN, {
|
Overlays.editOverlay(grabberLBN, {
|
||||||
visible: stretchHandlesVisible,
|
visible: stretchHandlesVisible,
|
||||||
rotation: rotation,
|
rotation: rotation,
|
||||||
|
@ -2515,7 +2514,6 @@ SelectionDisplay = (function() {
|
||||||
cornerPosition);
|
cornerPosition);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
for (var i = 0; i < SelectionManager.selections.length; i++) {
|
for (var i = 0; i < SelectionManager.selections.length; i++) {
|
||||||
var properties = SelectionManager.savedProperties[SelectionManager.selections[i]];
|
var properties = SelectionManager.savedProperties[SelectionManager.selections[i]];
|
||||||
if (!properties) {
|
if (!properties) {
|
||||||
|
@ -2639,7 +2637,6 @@ SelectionDisplay = (function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// FUNCTION: VEC 3 MULT
|
// FUNCTION: VEC 3 MULT
|
||||||
var vec3Mult = function(v1, v2) {
|
var vec3Mult = function(v1, v2) {
|
||||||
return {
|
return {
|
||||||
|
@ -2677,8 +2674,7 @@ SelectionDisplay = (function() {
|
||||||
y: Math.abs(direction.y) > 0 ? 1 : 0,
|
y: Math.abs(direction.y) > 0 ? 1 : 0,
|
||||||
z: Math.abs(direction.z) > 0 ? 1 : 0
|
z: Math.abs(direction.z) > 0 ? 1 : 0
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
var numDimensions = mask.x + mask.y + mask.z;
|
var numDimensions = mask.x + mask.y + mask.z;
|
||||||
|
|
||||||
|
@ -4187,7 +4183,6 @@ SelectionDisplay = (function() {
|
||||||
Controller.mouseReleaseEvent.connect(that.mouseReleaseEvent);
|
Controller.mouseReleaseEvent.connect(that.mouseReleaseEvent);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
return that;
|
return that;
|
||||||
|
|
||||||
}());
|
}());
|
||||||
|
|
Loading…
Reference in a new issue