aboutsummaryrefslogtreecommitdiff
path: root/js/tools/modifier-tool-base.js
diff options
context:
space:
mode:
authorJose Antonio Marquez2012-05-24 00:07:23 -0700
committerJose Antonio Marquez2012-05-24 00:07:23 -0700
commit5914c5b2209c4b8daac4249bb76cda5c9314c4e6 (patch)
treef0910e57f64d1638f00bf7f6449d479fb377bfac /js/tools/modifier-tool-base.js
parent16decc5726eafbb25675c61be6df85a378ac1fac (diff)
downloadninja-5914c5b2209c4b8daac4249bb76cda5c9314c4e6.tar.gz
Cleaning up referencing to 'documentRoot' and '_document'
Moved to reference new model in DOM architecture rework. This should not affect anything, just moving the references, and also the setting to the render methods in the design view.
Diffstat (limited to 'js/tools/modifier-tool-base.js')
-rwxr-xr-xjs/tools/modifier-tool-base.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/js/tools/modifier-tool-base.js b/js/tools/modifier-tool-base.js
index d023206a..6aea77aa 100755
--- a/js/tools/modifier-tool-base.js
+++ b/js/tools/modifier-tool-base.js
@@ -39,7 +39,7 @@ exports.ModifierToolBase = Montage.create(DrawingTool, {
39 return this._clickedObject; 39 return this._clickedObject;
40 }, 40 },
41 set: function (value) { 41 set: function (value) {
42 if(value === this.application.ninja.currentDocument.documentRoot) 42 if(value === this.application.ninja.currentDocument.model.documentRoot)
43 { 43 {
44 this._clickedObject = this._target; 44 this._clickedObject = this._target;
45 } 45 }
@@ -64,7 +64,7 @@ exports.ModifierToolBase = Montage.create(DrawingTool, {
64 value: function(hitRec) 64 value: function(hitRec)
65 { 65 {
66 var elt = hitRec.getElt(); 66 var elt = hitRec.getElt();
67 if(elt === this.application.ninja.currentDocument.documentRoot) 67 if(elt === this.application.ninja.currentDocument.model.documentRoot)
68 { 68 {
69 elt = this._target; 69 elt = this._target;
70 } 70 }
@@ -531,7 +531,7 @@ exports.ModifierToolBase = Montage.create(DrawingTool, {
531 531
532 snapManager.enableSnapAlign( snapManager.snapAlignEnabledAppLevel() ); 532 snapManager.enableSnapAlign( snapManager.snapAlignEnabledAppLevel() );
533 if ( snapManager.snapAlignEnabled() && this._clickedObject && 533 if ( snapManager.snapAlignEnabled() && this._clickedObject &&
534 (this._clickedObject !== this.application.ninja.currentDocument.documentRoot) ) 534 (this._clickedObject !== this.application.ninja.currentDocument.model.documentRoot) )
535 { 535 {
536 var alignBounds = !hitRec || (hitRec.getType() == hitRec.SNAP_TYPE_STAGE) || hitRec.isSomeGridTypeSnap(); 536 var alignBounds = !hitRec || (hitRec.getType() == hitRec.SNAP_TYPE_STAGE) || hitRec.isSomeGridTypeSnap();
537 if (alignBounds) 537 if (alignBounds)
@@ -776,7 +776,7 @@ exports.ModifierToolBase = Montage.create(DrawingTool, {
776 } 776 }
777 else 777 else
778 { 778 {
779 this.target = this.application.ninja.currentDocument.documentRoot; 779 this.target = this.application.ninja.currentDocument.model.documentRoot;
780 } 780 }
781// this._updateTargets(); 781// this._updateTargets();
782 } 782 }