}
if ((!href.contains(fqdn) && !this.className.contains('popup')) || node.hasClass('popup')) {
node.click(function () {
- window.open(this.href);
+ window.open($.plURL(this.href));
return false;
});
}
popWin: function(w, h) {
return this.click(function() {
- window.open(this.href, '_blank',
+ window.open($.plURL(this.href), '_blank',
'toolbar=0,location=0,directories=0,status=0,'
+'menubar=0,scrollbars=1,resizable=1,'
+'width='+w+',height='+h);
break;
case 'admin':
$(this).attr('href', 'admin/user/' + profile.hrpid)
- .click(function() { window.open($(this).attr('href')); return false });
+ .click(function() { window.open($.plURL(this.href)); return false });
break;
}
}