(_ref)
| 2623 | }, 30); |
| 2624 | |
| 2625 | var drop = function drop(_ref) { |
| 2626 | var originalEvent = _ref.originalEvent, |
| 2627 | putSortable = _ref.putSortable, |
| 2628 | dragEl = _ref.dragEl, |
| 2629 | activeSortable = _ref.activeSortable, |
| 2630 | dispatchSortableEvent = _ref.dispatchSortableEvent, |
| 2631 | hideGhostForTarget = _ref.hideGhostForTarget, |
| 2632 | unhideGhostForTarget = _ref.unhideGhostForTarget; |
| 2633 | if (!originalEvent) return; |
| 2634 | var toSortable = putSortable || activeSortable; |
| 2635 | hideGhostForTarget(); |
| 2636 | var touch = originalEvent.changedTouches && originalEvent.changedTouches.length ? originalEvent.changedTouches[0] : originalEvent; |
| 2637 | var target = document.elementFromPoint(touch.clientX, touch.clientY); |
| 2638 | unhideGhostForTarget(); |
| 2639 | if (toSortable && !toSortable.el.contains(target)) { |
| 2640 | dispatchSortableEvent('spill'); |
| 2641 | this.onSpill({ |
| 2642 | dragEl: dragEl, |
| 2643 | putSortable: putSortable |
| 2644 | }); |
| 2645 | } |
| 2646 | }; |
| 2647 | function Revert() {} |
| 2648 | Revert.prototype = { |
| 2649 | startIndex: null, |
nothing calls this directly
no test coverage detected
searching dependent graphs…