()
| 146 | } |
| 147 | |
| 148 | function onDragMouseUp() { |
| 149 | removeEventListener(eventNames.move, onDragMouseMove); |
| 150 | removeEventListener(eventNames.end, onDragMouseUp); |
| 151 | stopScrolling(); |
| 152 | dragged.remove(); |
| 153 | if (isTouch) noScroll.remove(); |
| 154 | original.classList.remove('dragging-placeholder'); |
| 155 | onDrop(); |
| 156 | } |
| 157 | |
| 158 | function animate(hoveredIndex) { |
| 159 | const delta = lastIndex < hoveredIndex ? height : -height; |
nothing calls this directly
no test coverage detected