c18f26145c
For reference (raised by rozzin in IRC): * http://foldoc.org/module * http://foldoc.org/library * http://foldoc.org/plugin As noted by XRevan86, modules are not necessarily non-essential. As we will keep the modules directory in GS root [therefore, near to plugins/], it is evidenced the difference between both. This is a simple yet fundamental structural change. It doesn't change functionality but makes clearer the way we understand GNU social's internals. |
||
---|---|---|
.. | ||
locale | ||
InfiniteScrollPlugin.php | ||
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 "addPlugin('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 ======= addPlugin('InfiniteScroll', array( 'on_next_only'=>false ));