The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

13 lines
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