Skip to content

Instantly share code, notes, and snippets.

@druzn3k
Forked from henrik/will_paginate.rb
Created April 30, 2012 09:25
Show Gist options
  • Save druzn3k/2556798 to your computer and use it in GitHub Desktop.
Save druzn3k/2556798 to your computer and use it in GitHub Desktop.
Extends will_paginate to play well with Twitter's Bootstrap (http://twitter.github.com/bootstrap/). Suggested location: config/initializers/will_paginate.rb
# https://gist.github.com/1214011
module WillPaginate
module ActionView
def will_paginate(collection = nil, options = {})
options[:renderer] ||= BootstrapLinkRenderer
super.try :html_safe
end
class BootstrapLinkRenderer < 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 previous_or_next_page(page, text, classname)
tag :li, link(text, page || '#'), :class => [classname[0..3], classname, ('disabled' unless page)].join(' ')
end
def gap
tag :li, link(super, '#'), :class => 'disabled'
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment