MCPcopy Create free account
hub / github.com/Pagghiu/SaneCppLibraries / hudShow

Function hudShow

Support/SingleFileLibs/javascript/app.js:94–100  ·  view source on GitHub ↗
(title)

Source from the content-addressed store, hash-verified

92
93 // HUD helpers
94 function hudShow(title) {
95 if (!hudOverlay) return;
96 hudTitle.textContent = title || 'Working…';
97 hudStatus.textContent = 'Preparing…';
98 hudBar.style.width = '0%';
99 hudOverlay.style.display = 'block';
100 }
101 function hudHide() { if (hudOverlay) hudOverlay.style.display = 'none'; }
102 function hudUpdate(status, pct) {
103 if (hudOverlay && status !== undefined) hudStatus.textContent = status;

Callers 1

downloadAllZipFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected