clicking the pagination block no longer sends page to top

v1.18.x
Baris Soner Usakli 11 years ago
parent 1580226757
commit 92894277a9

@ -905,9 +905,14 @@ define(['composer'], function(composer) {
function updateHeader() {
if (pagination == null) {
$('.pagination-block a').on('click', function() {
return false;
});
jQuery('.pagination-block i:first').on('click', function() {
app.scrollToTop();
});
jQuery('.pagination-block i:last').on('click', function() {
app.scrollToBottom();
});

Loading…
Cancel
Save