(show = true)
| 1315 | } |
| 1316 | |
| 1317 | function showVendorProgressPanel(show = true) { |
| 1318 | const panel = document.getElementById("vendor-progress-panel"); |
| 1319 | if (!panel) return; |
| 1320 | panel.classList.toggle("show", Boolean(show)); |
| 1321 | } |
| 1322 | |
| 1323 | function resetVendorProgressPanel() { |
| 1324 | vendorProgressState.cursor = 0; |
no test coverage detected