mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-22 05:49:03 +01:00
* FireFox/all apps: fixed in recent FF version popups opened always in a single popup (overwritting previous opened one)
This commit is contained in:
parent
2b01649e18
commit
3e30ca48a7
@ -403,7 +403,7 @@ function egw_openWindowCentered2(_url, _windowName, _width, _height, _status, _a
|
|||||||
|
|
||||||
if (is_ie) _windowName = !_windowName ? '_blank' : _windowName.replace(/[^a-zA-Z0-9_]+/,''); // IE fails, if name contains eg. a dash (-)
|
if (is_ie) _windowName = !_windowName ? '_blank' : _windowName.replace(/[^a-zA-Z0-9_]+/,''); // IE fails, if name contains eg. a dash (-)
|
||||||
|
|
||||||
windowID = window.open(_url, _windowName, "width=" + _width + ",height=" + _height +
|
windowID = window.open(_url, _windowName || '_blank', "width=" + _width + ",height=" + _height +
|
||||||
",screenX=" + positionLeft + ",left=" + positionLeft + ",screenY=" + positionTop + ",top=" + positionTop +
|
",screenX=" + positionLeft + ",left=" + positionLeft + ",screenY=" + positionTop + ",top=" + positionTop +
|
||||||
",location=no,menubar=no,directories=no,toolbar=no,scrollbars=yes,resizable=yes,status="+_status);
|
",location=no,menubar=no,directories=no,toolbar=no,scrollbars=yes,resizable=yes,status="+_status);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user