Revert "made pagination.loadPage also a silent ajaxify, so in-topic searching works with it"

This reverts commit 7e3e7edfd4.
This commit is contained in:
Julian Lam
2015-04-20 15:57:15 -04:00
parent 72f80dd330
commit bbccc38efd

View File

@@ -26,7 +26,7 @@ define('forum/pagination', function() {
return;
}
var url = window.location.pathname.slice(1).split('/').slice(0, 3).join('/') + '?page=' + page;
ajaxify.go(url, callback, true);
ajaxify.go(url, callback);
};
return pagination;