]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/InfiniteScroll/infinitescroll.js
Merge branch 'master' into testing
[quix0rs-gnu-social.git] / plugins / InfiniteScroll / infinitescroll.js
1 jQuery(document).ready(function($){
2   $('notices_primary').infinitescroll({
3     debug: true,
4     infiniteScroll  : false,
5     nextSelector    : "li.nav_next a",
6     loadingImg      : $('address .url')[0].href+'plugins/InfiniteScroll/ajax-loader.gif',
7     text            : "<em>Loading the next set of posts...</em>",
8     donetext        : "<em>Congratulations, you\'ve reached the end of the Internet.</em>",
9     navSelector     : "div.pagination",
10     contentSelector : "#notices_primary ol.notices",
11     itemSelector    : "#notices_primary ol.notices li"
12     },function(){
13         NoticeAttachments();
14     });
15 });