mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-13 10:04:31 +00:00
13 lines
382 B
JavaScript
Vendored
13 lines
382 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");
|
|
});
|