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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user