({ dragRect, isOwner, activeSortable })
| 281 | }, |
| 282 | |
| 283 | dragOverAnimationCapture({ dragRect, isOwner, activeSortable }) { |
| 284 | multiDragElements.forEach(multiDragElement => { |
| 285 | multiDragElement.thisAnimationDuration = null; |
| 286 | }); |
| 287 | |
| 288 | if (activeSortable.options.animation && !isOwner && activeSortable.multiDrag.isMultiDrag) { |
| 289 | clonesFromRect = Object.assign({}, dragRect); |
| 290 | let dragMatrix = matrix(dragEl, true); |
| 291 | clonesFromRect.top -= dragMatrix.f; |
| 292 | clonesFromRect.left -= dragMatrix.e; |
| 293 | } |
| 294 | }, |
| 295 | |
| 296 | dragOverAnimationComplete() { |
| 297 | if (folding) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…