From 730de1b6e5e32499c19e4c8057fedd0c1d8c89be Mon Sep 17 00:00:00 2001 From: epriestley Date: Mon, 1 Feb 2016 15:59:05 -0800 Subject: [PATCH] Remove an unused property from draggable lists Summary: Ref T5240. This property does nothing. Test Plan: Search, drag a card around. Reviewers: chad Reviewed By: chad Maniphest Tasks: T5240 Differential Revision: https://secure.phabricator.com/D15159 --- webroot/rsrc/js/core/DraggableList.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/webroot/rsrc/js/core/DraggableList.js b/webroot/rsrc/js/core/DraggableList.js index b15179a9a1..a929c93f66 100644 --- a/webroot/rsrc/js/core/DraggableList.js +++ b/webroot/rsrc/js/core/DraggableList.js @@ -48,7 +48,6 @@ JX.install('DraggableList', { _originScroll : null, _target : null, _targets : null, - _dimensions : null, _ghostHandler : null, _ghostNode : null, _group : null, @@ -171,7 +170,6 @@ JX.install('DraggableList', { this._dragging = e.getNode(this._sigil); this._origin = JX.$V(e); this._originScroll = JX.Vector.getAggregateScrollForNode(this._dragging); - this._dimensions = JX.$V(this._dragging); for (var ii = 0; ii < this._group.length; ii++) { this._group[ii]._clearTarget();