Compare commits

...

2 commits

Author SHA1 Message Date
c58f66770c Merge pull request 'fix: restore news ticker on the map HUD' (#5) from fix/news-ticker-hud into master
Some checks failed
build-and-deploy / build (push) Has been cancelled
Reviewed-on: #5
2026-08-27 21:45:42 -04:00
Sirius DevOps
0a7a9236d6 fix: restore news ticker on the map HUD
Boot deferred news to the News view for overlay speed. Bring the footer
ticker back after map init starts; article bodies stay off the wire.
2026-08-27 21:47:22 -04:00

View file

@ -2630,6 +2630,9 @@ initSettings();
initMarketTicker(); initMarketTicker();
checkHealth(); checkHealth();
initMap(); initMap();
// Ticker lives on the map HUD — load after overlays start so it does not
// contend with the first bbox burst. Payload is slim (no article bodies).
setTimeout(() => loadNews(true), 400);
setInterval(checkHealth, 30000); setInterval(checkHealth, 30000);
</script> </script>
</body> </body>