aboutsummaryrefslogtreecommitdiff
path: root/js/helper-classes/3D/view-utils.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/helper-classes/3D/view-utils.js')
-rwxr-xr-xjs/helper-classes/3D/view-utils.js11
1 files changed, 6 insertions, 5 deletions
diff --git a/js/helper-classes/3D/view-utils.js b/js/helper-classes/3D/view-utils.js
index 5dc099ee..8c338f84 100755
--- a/js/helper-classes/3D/view-utils.js
+++ b/js/helper-classes/3D/view-utils.js
@@ -354,16 +354,17 @@ exports.ViewUtils = Montage.create(Component, {
354 354
355 // transform the bounds up the tree 355 // transform the bounds up the tree
356 var child = elt; 356 var child = elt;
357 var parent = elt.offsetParent;
358 while ( child ) 357 while ( child )
359 { 358 {
360 pt = this.childToParent( pt, child ); 359 pt = this.childToParent( pt, child );
361 360
362// if (parent === this._rootElement) break; 361// if (child === this._stageElement) break;
363 if (child === this._stageElement) break; 362// child = child.offsetParent;
364 363
365 child = parent; 364 if (child === this._stageElement) break;
366 parent = parent.offsetParent; 365 if (child === this._rootElement) break;
366 child = child.offsetParent;
367 if (child === this._rootElement) break;
367 } 368 }
368 369
369 ///////////////////////////////////////////////////////// 370 /////////////////////////////////////////////////////////