aboutsummaryrefslogtreecommitdiff
path: root/js/tools
diff options
context:
space:
mode:
Diffstat (limited to 'js/tools')
-rw-r--r--js/tools/SelectionTool.js1
-rw-r--r--js/tools/drawing-tool-base.js1
2 files changed, 0 insertions, 2 deletions
diff --git a/js/tools/SelectionTool.js b/js/tools/SelectionTool.js
index 5f2a959f..862b2e88 100644
--- a/js/tools/SelectionTool.js
+++ b/js/tools/SelectionTool.js
@@ -180,7 +180,6 @@ var SelectionTool = exports.SelectionTool = Montage.create(ModifierToolBase, {
180 this._handleMode = null; 180 this._handleMode = null;
181 this._delta = null; 181 this._delta = null;
182 this.DrawHandles(); 182 this.DrawHandles();
183 console.log( "move: (" + dx + ", " + dy + ")" );
184 } 183 }
185 184
186 this.endDraw(event); 185 this.endDraw(event);
diff --git a/js/tools/drawing-tool-base.js b/js/tools/drawing-tool-base.js
index 6fc34911..cd895102 100644
--- a/js/tools/drawing-tool-base.js
+++ b/js/tools/drawing-tool-base.js
@@ -10,7 +10,6 @@ var Component = require("montage/ui/component").Component;
10var snapManager = require("js/helper-classes/3D/snap-manager").SnapManager; 10var snapManager = require("js/helper-classes/3D/snap-manager").SnapManager;
11var viewUtils = require("js/helper-classes/3D/view-utils").ViewUtils; 11var viewUtils = require("js/helper-classes/3D/view-utils").ViewUtils;
12var vecUtils = require("js/helper-classes/3D/vec-utils").VecUtils; 12var vecUtils = require("js/helper-classes/3D/vec-utils").VecUtils;
13var Properties3D = require("js/helper-classes/Properties3D").Properties3D;
14var drawUtils = require("js/helper-classes/3D/draw-utils").DrawUtils; 13var drawUtils = require("js/helper-classes/3D/draw-utils").DrawUtils;
15 14
16exports.DrawingToolBase = Montage.create(Montage, { 15exports.DrawingToolBase = Montage.create(Montage, {