This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-29 10:42:08 -08:00
|
|
|
module AccountsHelper
|
2016-03-19 06:02:30 -07:00
|
|
|
def pagination_options
|
2016-10-03 07:10:17 -07:00
|
|
|
{
|
2016-11-15 14:02:57 -08: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-03 07:10:17 -07:00
|
|
|
inner_window: 1,
|
2016-11-15 07:56:29 -08:00
|
|
|
outer_window: 0,
|
2016-10-03 07:10:17 -07:00
|
|
|
}
|
2016-03-19 06:02:30 -07:00
|
|
|
end
|
2016-02-29 10:42:08 -08:00
|
|
|
end
|