fixing bug where outgoing links didn't actually let you leave... oops!

v1.18.x
Julian Lam 12 years ago
parent 4a7cd664fd
commit 49e28f9d1e

@ -117,12 +117,14 @@ var ajaxify = {};
if (!e.ctrlKey && e.which === 1) { if (!e.ctrlKey && e.which === 1) {
if (this.host === window.location.host) { if (this.host === window.location.host) {
// Internal link
var url = this.href.replace(rootUrl + '/', ''); var url = this.href.replace(rootUrl + '/', '');
if (ajaxify.go(url)) { if (ajaxify.go(url)) {
e.preventDefault(); e.preventDefault();
} }
} else { } else if (window.location.pathname !== '/outgoing') {
// External Link
ajaxify.go('outgoing?url=' + encodeURIComponent(this.href)); ajaxify.go('outgoing?url=' + encodeURIComponent(this.href));
e.preventDefault(); e.preventDefault();
} }

Loading…
Cancel
Save