pixelfed/resources/assets/js/timeline.js
2018-06-04 15:10:40 +02:00

18 lines
481 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,
});
$("#modal-post").addClass("modal fade");
$("#modal-dialog").addClass("modal-dialog");
$("#modal-text").removeClass("d-none");
infScroll.on( 'append', function( response, path, items ) {
pixelfed.hydrateLikes();
});
});