You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//Infinite Scroll$(window).on("scroll",function(){//page heightvarscrollHeight=$(document).height();//scroll positionvarscrollPos=$(window).height()+$(window).scrollTop();// fire if the scroll position is 300 pixels above the bottom of the pageif(((scrollHeight-300)>=scrollPos)/scrollHeight==0){$('.load-more-days-button').click();}});
For this, we'd need paging support in the rebenchdb/dash/8/changes endpoint.
At this point, the most active projects already result in many hundreds of changes, which is >90kb each for at least 3 of the projects.
The text was updated successfully, but these errors were encountered:
We should make the change list an "infinite scroll" kind of element.
See for instance here: https://hashnode.com/post/a-super-simple-infinite-scroll-implementation-in-javascriptjquery-ck4i120t900jwmqs15cuo2zbm
For this, we'd need paging support in the
rebenchdb/dash/8/changes
endpoint.At this point, the most active projects already result in many hundreds of changes, which is >90kb each for at least 3 of the projects.
The text was updated successfully, but these errors were encountered: