(title)
| 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; |