Add timeline.js

pull/9/head
Daniel Supernault 2018-05-19 21:12:42 -06:00
rodzic 6c9675a74d
commit 993f831867
1 zmienionych plików z 9 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,9 @@
$(document).ready(function() {
$('.pagination').hide();
let elem = document.querySelector('.timeline-feed');
let infScroll = new InfiniteScroll( elem, {
path: '.pagination__next',
append: '.timeline-feed',
history: false,
});
});