Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 476961
Collapse All | Expand All

(-)a/bundles/org.eclipse.rap.rwt/js/rwt/widgets/util/GridDNDFeedback.js (-2 / +1 lines)
Lines 137-143 rwt.qx.Class.define( "rwt.widgets.util.GridDNDFeedback", { Link Here
137
      var location = { x : 0, y : 0 };
137
      var location = { x : 0, y : 0 };
138
      var node = row.$el.get( 0 );
138
      var node = row.$el.get( 0 );
139
      var treeNode = this._tree._getTargetNode();
139
      var treeNode = this._tree._getTargetNode();
140
      while( node != treeNode ) {
140
      while( node != null && node != treeNode ) {
141
        location.x += node.offsetLeft;
141
        location.x += node.offsetLeft;
142
        location.y += node.offsetTop;
142
        location.y += node.offsetTop;
143
        node = node.parentNode;
143
        node = node.parentNode;
144
- 

Return to bug 476961