Files
oki-atlas-fediverse/atlas-fediverse/static/boot-check.js
T
sucupira 93c577c5d3 chore: état initial avant refonte (atlas SvelteKit v4.0.0)
Snapshot de l'existant avant application du playbook OKI :
background shader Three.js, carte graphe 3D, timeline statique.
2026-07-21 13:10:12 -04:00

10 lines
447 B
JavaScript

/* Diagnostic de démarrage — script classique externe (compatible CSP « script-src 'self' »).
Affiche le bandeau #boot-warning si l'app SvelteKit n'a pas démarré après 8 s
(modules bloqués, ex. ouverture en file:// ou déploiement incomplet). */
window.setTimeout(function () {
if (!document.documentElement.dataset.js) {
var warning = document.getElementById('boot-warning');
if (warning) warning.hidden = false;
}
}, 8000);