The code powering m.abunchtell.com https://m.abunchtell.com
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

13 líneas
289 B

  1. # frozen_string_literal: true
  2. module AccountsHelper
  3. def pagination_options
  4. {
  5. previous_label: safe_join([fa_icon('chevron-left'), 'Prev'], ' '),
  6. next_label: safe_join(['Next', fa_icon('chevron-right')], ' '),
  7. inner_window: 1,
  8. outer_window: 0,
  9. }
  10. end
  11. end