()
| 507 | } |
| 508 | |
| 509 | function refreshAnalytics() { |
| 510 | if (document.hidden) return; |
| 511 | fetchAndRenderAnalytics(); |
| 512 | |
| 513 | const live = document.getElementById("live"); |
| 514 | live.style.backgroundColor = "red"; |
| 515 | setTimeout(() => { |
| 516 | live.style.backgroundColor = "#e2e2e2"; |
| 517 | live.classList.remove("fresh"); |
| 518 | }, 9000); |
| 519 | } |
| 520 | |
| 521 | /* initial paint & schedule */ |
| 522 | fetchAndRenderAnalytics(); |
nothing calls this directly
no test coverage detected