Fix Authors page pagination

Update infinite scroll plugin
This commit is contained in:
Ozzieisaacs
2019-01-25 21:58:19 +01:00
parent 97064db2a4
commit ec81a3cd92
3 changed files with 32 additions and 15 deletions

View File

@ -77,11 +77,11 @@ $(function() {
layoutMode : "fitRows"
});
$(".load-more .row").infinitescroll({
debug: false,
/*$(".load-more .row").infinitescroll({
debug: true,
navSelector : ".pagination",
// selector for the paged navigation (it will be hidden)
nextSelector : ".pagination a:last",
nextSelector : ".next",
// selector for the NEXT link (to page 2)
itemSelector : ".load-more .book",
animate : true,
@ -89,6 +89,22 @@ $(function() {
// selector for all items you'll retrieve
}, function(data) {
$(".load-more .row").isotope( "appended", $(data), null );
});*/
var $loadMore = $(".load-more .row").infiniteScroll({
debug: false,
// hideNav : ".pagination", # ToDo Renable functionn
// selector for the paged navigation (it will be hidden)
path : ".next",
// selector for the NEXT link (to page 2)
append : ".load-more .book",
//animate : true,
//extraScrollPx: 300
// selector for all items you'll retrieve
});
$loadMore.on( 'append.infiniteScroll', function( event, response, path, data ) {
$(".pagination").addClass("hidden");
$(".load-more .row").isotope( "appended", $(data), null );
});
$("#restart").click(function() {