added a preventDefault when href="#" or data-ajaxify="false", so page doesn't send user back to top (which is kind of annoying), but not sure if this may introduce side-effects. @barisusakli @psychobunny

v1.18.x
Julian Lam
parent 15e6c51541
commit 57d45518bd

@ -276,7 +276,7 @@ $(document).ready(function() {
// Enhancing all anchors to ajaxify...
$(document.body).on('click', 'a', function (e) {
if (hrefEmpty(this.href) || this.target !== '' || this.protocol === 'javascript:' || $(this).attr('data-ajaxify') === 'false') {
return;
return e.preventDefault();
}
if (!window.location.pathname.match(/\/(403|404)$/g)) {

Loading…
Cancel
Save