]> 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     nextSelector    : "li.nav_next a",
5     loadingImg      : $('address .url')[0].href+'plugins/InfiniteScroll/ajax-loader.gif',
6     text            : "<em>Loading the next set of posts...</em>",
7     donetext        : "<em>Congratulations, you\'ve reached the end of the Internet.</em>",
8     navSelector     : "div.pagination",
9     contentSelector : "#notices_primary ol.notices",
10     itemSelector    : "#notices_primary ol.notices li"
11     },function(){
12         NoticeAttachments();
13     });
14 });
15