mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 23:00:56 +01:00
Fix framework wrong window opener in openPopup
This commit is contained in:
parent
668ccafe36
commit
90afd04015
@ -737,12 +737,13 @@ var fw_base = Class.extend({
|
|||||||
* @param {string|boolean} _app app-name for framework to set correct opener or false for current app
|
* @param {string|boolean} _app app-name for framework to set correct opener or false for current app
|
||||||
* @param {boolean} _returnID true: return window, false: return undefined
|
* @param {boolean} _returnID true: return window, false: return undefined
|
||||||
* @param {type} _status "yes" or "no" to display status bar of popup
|
* @param {type} _status "yes" or "no" to display status bar of popup
|
||||||
|
* @param {DOMWindow} _parentWnd parent window
|
||||||
* @returns {DOMWindow|undefined}
|
* @returns {DOMWindow|undefined}
|
||||||
*/
|
*/
|
||||||
openPopup: function(_url, _width, _height, _windowName, _app, _returnID, _status)
|
openPopup: function(_url, _width, _height, _windowName, _app, _returnID, _status, _parentWnd)
|
||||||
{
|
{
|
||||||
//Determine the window the popup should be opened in - normally this is the iframe of the currently active application
|
//Determine the window the popup should be opened in - normally this is the iframe of the currently active application
|
||||||
var parentWindow = window;
|
var parentWindow = _parentWnd || window;
|
||||||
var navigate = false;
|
var navigate = false;
|
||||||
if (typeof _app != 'undefined' && _app !== false)
|
if (typeof _app != 'undefined' && _app !== false)
|
||||||
{
|
{
|
||||||
@ -758,7 +759,7 @@ var fw_base = Class.extend({
|
|||||||
var appEntry = framework.activeApp;
|
var appEntry = framework.activeApp;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (appEntry != null && appEntry.browser.iframe != null)
|
if (appEntry != null && appEntry.browser.iframe != null && (_app || !egw(parentWindow).is_popup()))
|
||||||
parentWindow = appEntry.browser.iframe.contentWindow;
|
parentWindow = appEntry.browser.iframe.contentWindow;
|
||||||
|
|
||||||
var windowID = egw(parentWindow).openPopup(_url, _width, _height, _windowName, _app, true, _status, true);
|
var windowID = egw(parentWindow).openPopup(_url, _width, _height, _windowName, _app, true, _status, true);
|
||||||
|
Loading…
Reference in New Issue
Block a user