1
0
mirror of https://github.com/mastodon/mastodon synced 2024-11-25 07:36:31 +09:00
mastodon/app/helpers/accounts_helper.rb
2016-10-03 16:17:28 +02:00

11 lines
245 B
Ruby

module AccountsHelper
def pagination_options
{
previous_label: "#{fa_icon('chevron-left')} Prev".html_safe,
next_label: "Next #{fa_icon('chevron-right')}".html_safe,
inner_window: 1,
outer_window: 0
}
end
end