({ fromSortable, rootEl, sortable, dragRect })
| 205 | }, |
| 206 | |
| 207 | revert({ fromSortable, rootEl, sortable, dragRect }) { |
| 208 | if (multiDragElements.length > 1) { |
| 209 | // Setup unfold animation |
| 210 | multiDragElements.forEach(multiDragElement => { |
| 211 | sortable.addAnimationState({ |
| 212 | target: multiDragElement, |
| 213 | rect: folding ? getRect(multiDragElement) : dragRect |
| 214 | }); |
| 215 | |
| 216 | unsetRect(multiDragElement); |
| 217 | |
| 218 | multiDragElement.fromRect = dragRect; |
| 219 | |
| 220 | fromSortable.removeAnimationState(multiDragElement); |
| 221 | }); |
| 222 | folding = false; |
| 223 | insertMultiDragElements(!this.options.removeCloneOnHide, rootEl); |
| 224 | } |
| 225 | }, |
| 226 | |
| 227 | dragOverCompleted({ sortable, isOwner, insertion, activeSortable, parentEl, putSortable }) { |
| 228 | let options = this.options; |
nothing calls this directly
no test coverage detected
searching dependent graphs…