(event)
| 408 | event.currentTarget.classList.add("highlight"); |
| 409 | }; |
| 410 | const removeHighlight = (event) => { |
| 411 | event.preventDefault(); |
| 412 | event.currentTarget.classList.remove("highlight"); |
| 413 | }; |
| 414 | window.addEventListener("load", () => { |
| 415 | const dropArea = _("drop-area"); |
| 416 | dropArea.addEventListener("dragenter", addHighlight, false); |
nothing calls this directly
no outgoing calls
no test coverage detected