This commit is contained in:
2025-11-25 21:01:36 +02:00
parent d0f74634df
commit d4df355de4
-10
View File
@@ -15,9 +15,6 @@ export class Boot {
// Static Global Data
static data = {};
// App Loaded state
static #started = false;
// Widget Stack
static widgetStack = {};
@@ -32,13 +29,6 @@ export class Boot {
static vars = {};
static ready(callback) {
if (Boot.#started) {
console.log('Register already called!');
return;
}
Boot.#started = true;
dxReady(() => {