Keep private app objects if dialog gets destroyed

This commit is contained in:
Hadi Nategh
2021-04-20 15:30:46 +02:00
parent 1a72732c3d
commit c370941c51
5 changed files with 12 additions and 8 deletions

View File

@ -13,6 +13,8 @@
* @author Andreas Stöckel
*/
import {EgwApp} from "./egw_app";
/**
* Global egw object (for now created by the diverse JavaScript files) with a TypeScript interface
*/
@ -1297,7 +1299,7 @@ declare interface IegwAppLocal extends IegwWndLocal
declare function egw_getFramework() : any;
declare var chrome : any;
declare var InstallTrigger : any;
declare var app : {classes: any, [propName: string]: any};
declare var app : {classes: any, [propName: string]: EgwApp};
declare var egw_globalObjectManager : any;
declare var framework : any;
declare var egw_LAB : any;