v1.18.x
Julian Lam 9 years ago
parent 80d89a086e
commit 81a4103d64

@ -304,6 +304,8 @@ $(document).ready(function() {
return href === undefined || href === '' || href === 'javascript:;';
}
var contentEl = document.getElementById('content');
// Enhancing all anchors to ajaxify...
$(document.body).on('click', 'a', function (e) {
var _self = this;
@ -321,7 +323,7 @@ $(document).ready(function() {
}
}
} else if (window.location.pathname !== '/outgoing') {
if (config.openOutgoingLinksInNewTab) {
if (config.openOutgoingLinksInNewTab && $.contains(contentEl, this)) {
window.open(this.href, '_blank');
e.preventDefault();
} else if (config.useOutgoingLinksPage) {

Loading…
Cancel
Save