in website/content/javascripts/all.js [114:121]
needsNewWindow: function(e, destinationUrl, currentDomain) {
if (e.button !== 0 || e.ctrlKey || e.altKey || e.shiftKey || e.metaKey) {
return false;
}
var destinationDomain = destinationUrl.replace(/^https?:\/\//, '').split('/')[0];
return destinationDomain !== currentDomain;
},