(e)
| 701 | link.classList.remove("drop-hover"); |
| 702 | } |
| 703 | function breadcrumbDropHandler(e) { |
| 704 | const link = e.target.closest(".breadcrumb-link"); |
| 705 | if (!link) return; |
| 706 | e.preventDefault(); |
| 707 | link.classList.remove("drop-hover"); |
| 708 | const dropFolder = link.getAttribute("data-folder"); |
| 709 | handleDropOnFolder(e, dropFolder); |
| 710 | } |
| 711 | |
| 712 | /* ---------------------- |
| 713 | Folder-only scope (server truthy) |
nothing calls this directly
no test coverage detected