Updates the item's sort order based on the last-known pointer position.
()
| 698 | |
| 699 | /** Updates the item's sort order based on the last-known pointer position. */ |
| 700 | _sortFromLastPointerPosition() { |
| 701 | const position = this._lastKnownPointerPosition; |
| 702 | |
| 703 | if (position && this._dropContainer) { |
| 704 | this._updateActiveDropContainer(this._getConstrainedPointerPosition(position), position); |
| 705 | } |
| 706 | } |
| 707 | |
| 708 | /** Unsubscribes from the global subscriptions. */ |
| 709 | private _removeListeners() { |
no test coverage detected