fixes issue where anchors to internal rss feeds would fail to resolve

v1.18.x
Julian Lam 9 years ago
parent ecaa3eadcb
commit 8b03199d5c

@ -303,6 +303,10 @@ $(document).ready(function() {
}
}
if (internalLink && $(this).attr('href').endsWith('.rss')) {
return;
}
if (hrefEmpty(this.href) || this.protocol === 'javascript:' || $(this).attr('href') === '#') {
return e.preventDefault();
}

Loading…
Cancel
Save