IE fails, if windows name in egw_openWindowCentered2 contains something no a letter, number or underscore --> removing it

This commit is contained in:
Ralf Becker 2010-11-17 12:31:13 +00:00
parent e9d789bafe
commit e68255167e

View File

@ -178,6 +178,8 @@ function egw_openWindowCentered2(_url, _windowName, _width, _height, _status, _a
positionLeft = (windowWidth/2)-(_width/2)+egw_getWindowLeft();
positionTop = (windowHeight/2)-(_height/2)+egw_getWindowTop();
if (is_ie) _windowName = _windowName.replace(/[^a-z0-9_]+/,''); // IE fails, if name contains eg. a dash (-)
windowID = window.open(_url, _windowName, "width=" + _width + ",height=" + _height +
",screenX=" + positionLeft + ",left=" + positionLeft + ",screenY=" + positionTop + ",top=" + positionTop +
",location=no,menubar=no,directories=no,toolbar=no,scrollbars=yes,resizable=yes,status="+_status);