6f4abfcec4
- change worker: do not cache html pages (not necessary) - remove use of window.XXX and maximize import/export, this will provide more clarety, show circular dependencies + you will benefit IDE help
12 lines
267 B
JavaScript
12 lines
267 B
JavaScript
/**
|
|
* OxiCloud - App bootstrap
|
|
* Isolated startup trigger for the main application initializer.
|
|
*/
|
|
import { initApp } from './main.js';
|
|
|
|
if (document.readyState === 'loading') {
|
|
document.addEventListener('DOMContentLoaded', initApp);
|
|
} else {
|
|
initApp();
|
|
}
|