mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-02 20:19:27 +01:00
EgwApp object need to be global / assigned to window.EgwApp
as that's how we iterate through all EgwApp instances for observer and push
This commit is contained in:
parent
78e30f1a27
commit
f503f7139a
@ -1800,4 +1800,6 @@ export class EgwApp {
|
|||||||
* we track all instances.
|
* we track all instances.
|
||||||
*/
|
*/
|
||||||
EgwApp._instances = [];
|
EgwApp._instances = [];
|
||||||
|
// EgwApp need to be global on window, as it's used to iterate through all EgwApp instances
|
||||||
|
window.EgwApp = EgwApp;
|
||||||
//# sourceMappingURL=egw_app.js.map
|
//# sourceMappingURL=egw_app.js.map
|
@ -2262,3 +2262,5 @@ export abstract class EgwApp
|
|||||||
return EgwApp._instances[Symbol.iterator]();
|
return EgwApp._instances[Symbol.iterator]();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// EgwApp need to be global on window, as it's used to iterate through all EgwApp instances
|
||||||
|
window.EgwApp = EgwApp;
|
Loading…
Reference in New Issue
Block a user