Module: Pagination::PrevPageLinkForHelper
Instance Method Summary
collapse
#pagination_path_for
#current_params
#pagination_total_pages_for
#pagination_page_size_for
#pagination_record_size_for
#pagination_current_page_for
Instance Method Details
13
14
15
16
17
18
19
20
21
|
# File 'lib/action_set/helpers/pagination/prev_page_link_for_helper.rb', line 13
def (set)
current_page = (set)
if current_page > 1 && current_page <= (set)
link_to('‹ Prev', (current_page - 1), rel: 'prev', class: 'page-link page-prev')
else
content_tag(:span, '‹ Prev', class: 'page-link page-prev disabled')
end
end
|