mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
Fixed bug with popups opening in the wrong target
This commit is contained in:
parent
8381287b00
commit
4984ef031e
@ -586,7 +586,7 @@ egw_fw.prototype.setSidebox = function(_app, _data, _md5)
|
||||
{
|
||||
var action = form.action.match(/\('([^']*)/)[0].substr(2);
|
||||
form.action = action;
|
||||
form.target = this.parseAppFromUrl(action).appName;
|
||||
form.target = 'egw_app_iframe_' + this.parseAppFromUrl(action).appName;
|
||||
}
|
||||
}
|
||||
|
||||
@ -794,7 +794,7 @@ egw_fw_content_browser.prototype.setBrowserType = function(_type)
|
||||
this.iframe.style.width = "100%";
|
||||
this.iframe.style.borderWidth = 0;
|
||||
this.iframe.frameBorder = 0;
|
||||
this.iframe.name = this.app.appName;
|
||||
this.iframe.name = 'egw_app_iframe_' + this.app.appName;
|
||||
$(this.iframe).addClass('egw_fw_content_browser_iframe');
|
||||
$(this.baseDiv).append(this.iframe);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user