1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-18 19:40:55 +01:00

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
This commit is contained in:
epriestley 2016-02-01 15:59:05 -08:00
parent 7dfe044426
commit 730de1b6e5

View file

@ -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();