This commit is contained in:
psychobunny
2013-10-01 12:07:58 -04:00
parent 9613ea9018
commit 22c73f3c12
3 changed files with 11 additions and 3 deletions

View File

@@ -127,8 +127,11 @@ var ajaxify = {};
}
} else if (window.location.pathname !== '/outgoing') {
// External Link
ajaxify.go('outgoing?url=' + encodeURIComponent(this.href));
e.preventDefault();
if (config.useOutgoingLinksPage == true) {
ajaxify.go('outgoing?url=' + encodeURIComponent(this.href));
e.preventDefault();
}
}
}
});