infinite_scroll.html 642 B

12345678910111213141516
  1. <fieldset>{{- '' -}}
  2. <legend>{{ _('Infinite scroll') }}</legend>{{- '' -}}
  3. <p class="value">{{- '' -}}
  4. <input type="checkbox" {{- ' ' -}}
  5. name="infinite_scroll" {{- ' ' -}}
  6. aria-labelledby="pref_infinite_scroll" {{- ' ' -}}
  7. class="checkbox-onoff" {{- ' ' -}}
  8. {%- if preferences.get_value('infinite_scroll') -%}
  9. checked
  10. {%- endif -%}{{- ' ' -}}
  11. >{{- '' -}}
  12. </p>{{- '' -}}
  13. <div class="description" id="pref_infinite_scroll">
  14. {{- _('Automatically load next page when scrolling to bottom of current page') -}}
  15. </div>{{- '' -}}
  16. </fieldset>{{- '' -}}