mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-12 19:14:10 +01:00
Do not use iframe for popups from external links
This commit is contained in:
parent
a5ff2a71a4
commit
a2cf0787b0
@ -153,6 +153,11 @@ var fw_browser = Class.extend({
|
||||
targetUrl = "index.php?menuaction=" + matches[1];
|
||||
useIframe = false;
|
||||
}
|
||||
// External link, but we'd still like to use everything without iframe
|
||||
if(_url.indexOf('no_popup=1') > 0)
|
||||
{
|
||||
useIframe = false;
|
||||
}
|
||||
|
||||
// Destroy application js
|
||||
if(window.app[this.app.appName] && window.app[this.app.appName].destroy)
|
||||
|
Loading…
Reference in New Issue
Block a user