Hannes Mannerheim 0f87edd9f4 remove dupes when infinitescrolling, and add infinitescroll to user lists and userdirectory also 9 anni fa
..
locale 51b28eda19 Localisation updates from http://translatewiki.net. 12 anni fa
InfiniteScrollPlugin.php f110fc5c9a Using GNUSOCIAL_VERSION instead of STATUSNET_VERSION 10 anni fa
README d9d9a10b6f Fix infinite scroll to work on 1.0.x 13 anni fa
ajax-loader.gif d77982b9b4 added Infinite Scroll plugin 14 anni fa
infinitescroll.js 0f87edd9f4 remove dupes when infinitescrolling, and add infinitescroll to user lists and userdirectory also 9 anni fa
jquery.infinitescroll.js f97380fdb5 Fix regression in last year's update of InfiniteScroll -- having debug off caused breakage due to bad code interpreting every variable as a selector, and jQuery then failing when passed 'false'. 13 anni fa
jquery.infinitescroll.min.js d77982b9b4 added Infinite Scroll plugin 14 anni fa

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
));