소스 검색

Add timeline.js

Daniel Supernault 7 년 전
부모
커밋
993f831867
1개의 변경된 파일9개의 추가작업 그리고 0개의 파일을 삭제
  1. 9 0
      resources/assets/js/timeline.js

+ 9 - 0
resources/assets/js/timeline.js

@@ -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,
+  });
+});