39 lines
1.3 KiB
JavaScript
39 lines
1.3 KiB
JavaScript
var InfiniteScroll = {
|
|
options: {
|
|
navSelector : "#pagination",
|
|
// selector for the paged navigation (it will be hidden)
|
|
nextSelector : ".paginate",
|
|
// selector for the NEXT link (to page 2)
|
|
itemSelector : ".stream_element",
|
|
// selector for all items you'll retrieve
|
|
pathParse : function( pathStr, nextPage ){
|
|
console.log(pathStr);
|
|
console.log(nextPage);
|
|
var newPath = pathStr.replace("?", "?only_posts=true&");
|
|
var last_time = $('#main_stream .stream_element').last().find('time.timeago').attr('integer');
|
|
return newPath.replace( /max_time=\d+/, 'max_time=' + last_time);
|
|
},
|
|
bufferPx: 500,
|
|
debug: false,
|
|
donetext: "no more.",
|
|
loadingText: "",
|
|
loadingImg: '/images/ajax-loader.gif'
|
|
},
|
|
postScrollCallback: function(){
|
|
for (var callback in InfiniteScroll.postScrollCallbacks){
|
|
InfiniteScroll.postScrollCallbacks[callback]();
|
|
}
|
|
},
|
|
postScrollCallbacks: [],
|
|
initialize: function(){
|
|
$('#main_stream').infinitescroll(InfiniteScroll.options, InfiniteScroll.postScrollCallback);
|
|
},
|
|
postScroll: function( callback ){
|
|
InfiniteScroll.postScrollCallbacks.push(callback);
|
|
}
|
|
}
|
|
|
|
$(document).ready(function() {
|
|
InfiniteScroll.initialize();
|
|
});
|
|
|