FSN#37542 opent nu niet meer automatisch een nieuwe window in chrome of IE waar dat niet nodig is.

svn path=/Website/trunk/; revision=34678
This commit is contained in:
2017-07-20 07:43:44 +00:00
parent 839b7ab8f1
commit 0153acd952

View File

@@ -1254,7 +1254,15 @@ var FcltMgr =
},
windowopen: function(url, name, specs, replace)
{
var wnd = window.open("", name, specs, replace);
var wnd;
/**********************************************************
* if the specs paramater is passed into window.open *
* it opens a new window in chrome (instead of a new tab) *
**********************************************************/
if (typeof(specs) == "undefined")
wnd = window.open("", name);
else
wnd = window.open("", name, specs, replace);
wnd.opener = null;
wnd.location = url;
try {