mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
9 lines
249 B
JavaScript
9 lines
249 B
JavaScript
|
$(document).ready(function() {
|
||
|
$('.pagination').hide();
|
||
|
let elem = document.querySelector('.timeline-feed');
|
||
|
let infScroll = new InfiniteScroll( elem, {
|
||
|
path: '.pagination__next',
|
||
|
append: '.timeline-feed',
|
||
|
history: false,
|
||
|
});
|
||
|
});
|