summaryrefslogtreecommitdiff
path: root/searx/plugins/infinite_scroll.py
blob: e3726671a2332031a1bb97e47e48ad9f83d8e419 (plain)
1
2
3
4
5
6
7
8
9
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
preference_section = 'ui'

js_dependencies = ('plugins/js/infinite_scroll.js',)
css_dependencies = ('plugins/css/infinite_scroll.css',)