blob: 422a4befb913e7d248003e7f58ab7486d9d4a1dd (
plain)
1
2
3
4
5
6
7
8
|
from flask_babel import gettext
name = gettext('Infinite scroll')
description = gettext('Automatically load next page when scrolling to bottom of current page')
default_on = False
js_dependencies = ('plugins/js/infinite_scroll.js',)
css_dependencies = ('plugins/css/infinite_scroll.css',)
|