mirror of
https://github.com/overte-org/overte.git
synced 2025-04-22 10:33:40 +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
|
||||
|
||||
|
||||
|
||||
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;
|
||||
|
||||
}());
|
||||
|
|
Loading…
Reference in a new issue