This commit is contained in:
2025-09-03 15:01:09 -03:00
parent 3381dd1778
commit 0c1cca64a8

View File

@@ -64,7 +64,10 @@
} }
} }
// Iniciar todo el proceso if (document.readyState === 'loading') { // Aún cargando
initWidgets(); document.addEventListener('DOMContentLoaded', initWidgets);
} else { // Ya cargado
initWidgets();
}
})(); })();