MCPcopy Create free account
hub / github.com/PierreGode/Ragnar / log

Function log

rusense_flasher/js/flasher.js:18–22  ·  view source on GitHub ↗
(msg)

Source from the content-addressed store, hash-verified

16/* ── UI helpers ── */
17const $ = (id) => document.getElementById(id);
18const log = (msg) => {
19 const el = $("flash-log");
20 el.textContent += msg + "\n";
21 el.scrollTop = el.scrollHeight;
22};
23
24function showFlashOverlay() {
25 $("flash-overlay").hidden = false;

Callers 2

flasher.jsFile · 0.70
writeLineFunction · 0.70

Calls 1

$Function · 0.70

Tested by

no test coverage detected