MCPcopy Create free account
hub / github.com/bmorcelli/Launcher / removeHighlight

Function removeHighlight

webUi/scripts.js:410–413  ·  view source on GitHub ↗
(event)

Source from the content-addressed store, hash-verified

408 event.currentTarget.classList.add("highlight");
409};
410const removeHighlight = (event) => {
411 event.preventDefault();
412 event.currentTarget.classList.remove("highlight");
413};
414window.addEventListener("load", () => {
415 const dropArea = _("drop-area");
416 dropArea.addEventListener("dragenter", addHighlight, false);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected