infinite_scroll.py 291 B

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