better js check
This commit is contained in:
parent
cedfa90d76
commit
f574f8faf0
1 changed files with 26 additions and 25 deletions
|
@ -172,32 +172,33 @@ $(function() {
|
||||||
layoutMode : "fitColumns"
|
layoutMode : "fitColumns"
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if ($('.next').length) {
|
||||||
var $loadMore = $(".load-more .row").infiniteScroll({
|
var $loadMore = $(".load-more .row").infiniteScroll({
|
||||||
debug: false,
|
debug: false,
|
||||||
// selector for the paged navigation (it will be hidden)
|
// selector for the paged navigation (it will be hidden)
|
||||||
path : ".next",
|
path : ".next",
|
||||||
// selector for the NEXT link (to page 2)
|
// selector for the NEXT link (to page 2)
|
||||||
append : ".load-more .book"
|
append : ".load-more .book"
|
||||||
//animate : true, # ToDo: Reenable function
|
//animate : true, # ToDo: Reenable function
|
||||||
//extraScrollPx: 300
|
//extraScrollPx: 300
|
||||||
});
|
|
||||||
$loadMore.on( "append.infiniteScroll", function( event, response, path, data ) {
|
|
||||||
$(".pagination").addClass("hidden");
|
|
||||||
$(".load-more .row").isotope( "appended", $(data), null );
|
|
||||||
});
|
|
||||||
|
|
||||||
// fix for infinite scroll on CaliBlur Theme (#981)
|
|
||||||
if ($(".load-more .row").length && $("body").hasClass("blur")) {
|
|
||||||
$(".col-sm-10").bind("scroll", function () {
|
|
||||||
if (
|
|
||||||
$(this).scrollTop() + $(this).innerHeight() >=
|
|
||||||
$(this)[0].scrollHeight
|
|
||||||
) {
|
|
||||||
$loadMore.infiniteScroll("loadNextPage");
|
|
||||||
window.history.replaceState({}, null, $loadMore.infiniteScroll('getAbsolutePath')+1)
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
$loadMore.on( "append.infiniteScroll", function( event, response, path, data ) {
|
||||||
|
$(".pagination").addClass("hidden");
|
||||||
|
$(".load-more .row").isotope( "appended", $(data), null );
|
||||||
|
});
|
||||||
|
|
||||||
|
// fix for infinite scroll on CaliBlur Theme (#981)
|
||||||
|
if ($("body").hasClass("blur")) {
|
||||||
|
$(".col-sm-10").bind("scroll", function () {
|
||||||
|
if (
|
||||||
|
$(this).scrollTop() + $(this).innerHeight() >=
|
||||||
|
$(this)[0].scrollHeight
|
||||||
|
) {
|
||||||
|
$loadMore.infiniteScroll("loadNextPage");
|
||||||
|
window.history.replaceState({}, null, $loadMore.infiniteScroll('getAbsolutePath')+1)
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$("#restart").click(function() {
|
$("#restart").click(function() {
|
||||||
|
|
Loading…
Reference in a new issue