forked from extern/egroupware
Fix JS error when cleaning up after printing (TS conversion issue)
This commit is contained in:
parent
081490d0a6
commit
0fb32b7a6a
@ -12,6 +12,7 @@
|
|||||||
egw_inheritance.js;
|
egw_inheritance.js;
|
||||||
*/
|
*/
|
||||||
import '../jsapi/egw_inheritance.js';
|
import '../jsapi/egw_inheritance.js';
|
||||||
|
import {et2_IPrint} from "../etemplate/et2_core_interfaces";
|
||||||
|
|
||||||
window.fw_base = (function(){ "use strict"; return Class.extend(
|
window.fw_base = (function(){ "use strict"; return Class.extend(
|
||||||
{
|
{
|
||||||
@ -1266,9 +1267,10 @@ window.fw_base = (function(){ "use strict"; return Class.extend(
|
|||||||
appWindow.setTimeout(function() {
|
appWindow.setTimeout(function() {
|
||||||
for(var i = 0; i < et2_list.length; i++)
|
for(var i = 0; i < et2_list.length; i++)
|
||||||
{
|
{
|
||||||
et2_list[i].widgetContainer.iterateOver(function(_widget) {
|
et2_list[i].widgetContainer.iterateOver(function (_widget)
|
||||||
|
{
|
||||||
_widget.afterPrint();
|
_widget.afterPrint();
|
||||||
},et2_list[i],appWindow.et2_IPrint);
|
}, et2_list[i], et2_IPrint);
|
||||||
}
|
}
|
||||||
egw.loading_prompt(app.appName,false);
|
egw.loading_prompt(app.appName,false);
|
||||||
},100);
|
},100);
|
||||||
|
Loading…
Reference in New Issue
Block a user