* OpenIdConnect/OAuth: manage access and display OAuth apps inside EGroupware

This commit is contained in:
Ralf Becker
2020-03-30 21:02:48 +02:00
parent c19502ce5b
commit 3750711cdf
5 changed files with 50 additions and 11 deletions

View File

@ -51,10 +51,11 @@ var fw_browser = (function(){ "use strict"; return Class.extend(
}
// Call the resize handler (we have to use the jquery object of the iframe!)
if (wnd && typeof wnd.jQuery != "undefined")
{
wnd.jQuery(wnd).trigger("resize");
}
try {
if (wnd && typeof wnd.jQuery != "undefined") {
wnd.jQuery(wnd).trigger("resize");
}
} catch(e) {} // ignore if iframe runs of a different origin
},
/**