I believe this is the code snippet in that file:
/* ------------------------------ */
/**
* Open the link in a new window
*
* @param {event} e The event
* @param {boolean} force Force new window regardless of host?
*/
openNewWindow: function(e, link, force)
{
var ourHost = document.location.host;
var newHost = link.host;
/**
* Open a new window, if link is to a different host
*/
if( ourHost != newHost || force )
{
window.open(link.href);
Event.stop(e);
return false;
}
else
{
return true;
}
},
Could you please let me know how it should look like to make that setting?