* Returns all draggable elements * @return {HTMLElement[]}
()
| 384 | * @return {HTMLElement[]} |
| 385 | */ |
| 386 | getDraggableElements() { |
| 387 | return this.containers.reduce((current, container) => { |
| 388 | return [...current, ...this.getDraggableElementsForContainer(container)]; |
| 389 | }, []); |
| 390 | } |
| 391 | |
| 392 | /** |
| 393 | * Returns draggable elements for a given container, excluding the mirror and |
no test coverage detected