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

This commit is contained in:
Julian Lam
2016-06-09 14:28:37 -04:00
parent ecaa3eadcb
commit 8b03199d5c

View File

@@ -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();
}