Diogo Cordeiro e858629ac3 [aab] Revert structural change of v2 hace 5 años
..
locale e858629ac3 [aab] Revert structural change of v2 hace 5 años
InfiniteScrollModule.php 34bfdc3e91 [CORE] Refactor Plugin API to Module API hace 5 años
README 34bfdc3e91 [CORE] Refactor Plugin API to Module API hace 5 años
ajax-loader.gif e858629ac3 [aab] Revert structural change of v2 hace 5 años
infinitescroll.js e858629ac3 [aab] Revert structural change of v2 hace 5 años
jquery.infinitescroll.js e858629ac3 [aab] Revert structural change of v2 hace 5 años
jquery.infinitescroll.min.js e858629ac3 [aab] Revert structural change of v2 hace 5 años

README

Infinite Scroll adds the following functionality to your StatusNet installation:
When a user scrolls towards the bottom of the page, the next page of notices is
automatically retrieved and appended. This means they never need to click "Next
Page", which dramatically increases stickiness.

Note that there is a configuration option to make it so that the plugin doesn't
trigger when the user approaches the bottom of the page, but instead triggers
when the "next" button is clicked.

Installation
============
Add "addModule('InfiniteScroll',
array('setting'=>'value', 'setting2'=>'value2', ...);"
to the bottom of your config.php

Settings
========
on_next_only (false): trigger infinite scroll when the next button is clicked.
Note that this means you really don't have "infinite scrolling" as the trigger
is clicking, not scrolling.

Example
=======
addModule('InfiniteScroll', array(
'on_next_only'=>false
));