Project

General

Profile

Download (729 Bytes) Statistics
| Branch: | Tag: | Revision:
# config/initializers/will_paginate.rb
require 'will_paginate/array'

module WillPaginate
module ActionView
class BootstrapLinkRenderer < LinkRenderer
protected

def html_container(html)
tag :div, tag(:ul, html, :class=>"pagination pull-right"), 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
(18-18/19)