()
| 66 | }, |
| 67 | |
| 68 | drop() { |
| 69 | if (this.sortable.nativeDraggable) { |
| 70 | off(document, 'dragover', this._handleAutoScroll); |
| 71 | } else { |
| 72 | off(document, 'pointermove', this._handleFallbackAutoScroll); |
| 73 | off(document, 'touchmove', this._handleFallbackAutoScroll); |
| 74 | off(document, 'mousemove', this._handleFallbackAutoScroll); |
| 75 | } |
| 76 | |
| 77 | clearPointerElemChangedInterval(); |
| 78 | clearAutoScrolls(); |
| 79 | cancelThrottle(); |
| 80 | }, |
| 81 | |
| 82 | nulling() { |
| 83 | touchEvt = |
nothing calls this directly
no test coverage detected
searching dependent graphs…