Sha256: 0fc39cd126fe29d6c6ea1c62e53817fa117aa50a153d4843deb6bf725a480add
Contents?: true
Size: 586 Bytes
Versions: 24
Compression:
Stored size: 586 Bytes
Contents
# Based on https://gist.github.com/1182136 class BootstrapLinkRenderer < ::WillPaginate::ActionView::LinkRenderer protected def html_container(html) tag :div, tag(:ul, html), container_attributes end def page_number(page) tag :li, link(page, page, :rel => rel_value(page)), :class => ('active' if page == current_page) end def gap tag :li, link(super, '#'), :class => 'disabled' end def previous_or_next_page(page, text, classname) tag :li, link(text, page || '#'), :class => [classname[0..3], classname, ('disabled' unless page)].join(' ') end end
Version data entries
24 entries across 24 versions & 1 rubygems