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