searx/searx/plugins/infinite_scroll.py

10 lines
317 B
Python
Raw Normal View History

2016-08-11 04:21:28 +02:00
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
2017-02-12 15:06:01 +01:00
preference_section = 'ui'
2016-08-11 04:21:28 +02:00
js_dependencies = ('plugins/js/infinite_scroll.js',)
css_dependencies = ('plugins/css/infinite_scroll.css',)