Fixed bug with endless scrolling

It didn't work when more than one page at a time should be loaded.
This commit is contained in:
Marcin Kurczewski 2013-10-13 21:48:14 +02:00
parent b4f52e9af5
commit b5581c5822

View file

@ -18,6 +18,7 @@ function scrolled()
var nextPage = dom.find('.paginator .next:not(.inactive) a').attr('href');
$(document).data('page-next', nextPage);
$('.paginator-content').append($(response).find('.paginator-content').children().fadeIn('slow'));
scrolled();
});
}
}