Files
Oxicloud/static/js/app/bootstrap.js
T
2026-04-01 23:14:42 +02:00

15 lines
377 B
JavaScript

/**
* OxiCloud - App bootstrap
* Isolated startup trigger for the main application initializer.
*/
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', () => {
if (typeof window.initApp === 'function') {
window.initApp();
}
});
} else if (typeof window.initApp === 'function') {
window.initApp();
}