A small script for etherpad-lite which adds all pads to the index page.
npm install ep_small_list
Restart your etherpad-lite instance to recognice new addon.
- Requires a minimum Node.js version of 7.10.1.
The plugin works without configuration. But there are several configuration settings available. In your settings.json
, add:
"ep_small_list": {
"limit": 10
}
By default the number of entries is not limited ("limit": 0).
"ep_small_list": {
"sortmode": "lastchange"
}
The following sorting modes are available:
- "default": Use the order in which the API returns the pads (this is also the default sortmode).
- "lastchange": Sort the pads by last change.
"ep_small_list": {
"sortorder": "reverse"
}
The following sorting orders are available:
- "normal": Use the normal order generated by the choosen sortmode.
- "reverse": Reverse the order generated by the choosen sortmode.
- Supports ep_set_title_on_pad