2016-11-16 02:56:29 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-01 05:42:08 +11:00
|
|
|
module AccountsHelper
|
2016-03-20 00:02:30 +11:00
|
|
|
def pagination_options
|
2016-10-04 01:10:17 +11:00
|
|
|
{
|
2016-11-16 09:02:57 +11:00
|
|
|
previous_label: safe_join([fa_icon('chevron-left'), t('pagination.prev')], ' '),
|
|
|
|
next_label: safe_join([t('pagination.next'), fa_icon('chevron-right')], ' '),
|
2016-10-04 01:10:17 +11:00
|
|
|
inner_window: 1,
|
2016-11-16 02:56:29 +11:00
|
|
|
outer_window: 0,
|
2016-10-04 01:10:17 +11:00
|
|
|
}
|
2016-03-20 00:02:30 +11:00
|
|
|
end
|
2016-03-01 05:42:08 +11:00
|
|
|
end
|