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