0
0
Fork 0
mirror of https://github.com/lunaisnotaboy/mastodon.git synced 2025-03-22 18:09:31 +00:00
mastodon/app/helpers/accounts_helper.rb

11 lines
245 B
Ruby
Raw Normal View History

module AccountsHelper
def pagination_options
2016-10-03 14:10:17 +00:00
{
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