mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 08:44:49 +00:00
12 lines
346 B
JavaScript
Vendored
12 lines
346 B
JavaScript
Vendored
$(document).ready(function() {
|
|
$('.pagination').hide();
|
|
let elem = document.querySelector('.timeline-feed');
|
|
let infScroll = new InfiniteScroll( elem, {
|
|
path: '.pagination__next',
|
|
append: '.timeline-feed',
|
|
history: false,
|
|
});
|
|
infScroll.on( 'append', function( response, path, items ) {
|
|
pixelfed.hydrateLikes();
|
|
});
|
|
}); |