mirror of https://github.com/pixelfed/pixelfed.git
14 lines
380 B
JavaScript
14 lines
380 B
JavaScript
$(document).ready(function() {
|
|
$('.pagination').hide();
|
|
let elem = document.querySelector('.timeline-feed');
|
|
let infScroll = new InfiniteScroll( elem, {
|
|
path: '.pagination__next',
|
|
append: '.timeline-feed',
|
|
status: '.page-load-status',
|
|
history: false,
|
|
});
|
|
infScroll.on( 'append', function( response, path, items ) {
|
|
pixelfed.hydrateLikes();
|
|
});
|
|
});
|