also declare and export app and framework

This commit is contained in:
ralf 2023-03-17 08:52:52 +01:00
parent 0b8c108279
commit b95cdcb3c0
2 changed files with 4 additions and 1 deletions

View File

@ -1238,7 +1238,7 @@ declare interface IegwWndLocal extends IegwGlobal
* @param _isHtml true: add a html (no automatic quoting!), false (default): add as text * @param _isHtml true: add a html (no automatic quoting!), false (default): add as text
* @param _options tooltip options * @param _options tooltip options
*/ */
tooltipBind(_elem : HTMLElement, _str : string, _isHtml? : boolean, _options); tooltipBind(_elem : HTMLElement, _str : string, _isHtml? : boolean, _options? : any);
/** /**
* Unbinds the tooltip from the given DOM-Node. * Unbinds the tooltip from the given DOM-Node.
* *
@ -1362,6 +1362,8 @@ declare function egwIsMobile() : string|null;
declare var mailvelope : any; declare var mailvelope : any;
declare var framework : any;
declare function egw_refresh(_msg : string, app : string, id? : string|number, _type?, targetapp?, replace?, _with?, msgtype?); declare function egw_refresh(_msg : string, app : string, id? : string|number, _type?, targetapp?, replace?, _with?, msgtype?);
declare function egw_open(); declare function egw_open();

View File

@ -1,5 +1,6 @@
//export var app = window.app; //export var app = window.app;
export var egw = window.egw; export var egw = window.egw;
export var framework = window.framework; export var framework = window.framework;
export var app = window.app;
export var egw_getFramework = window.egw_getFramework; export var egw_getFramework = window.egw_getFramework;
export var jQuery = window.jQuery; export var jQuery = window.jQuery;