diaspora/config/initializers/will_paginate.rb
2012-03-15 16:44:25 +01:00

12 lines
368 B
Ruby

require 'will_paginate/array'
# Optional for Bootstrap :renderer => WillPaginate::ActionView::BootstrapLinkRenderer
# https://github.com/yrgoldteeth/bootstrap-will_paginate
module WillPaginate
module ActionView
def will_paginate(collection = nil, options = { :renderer => WillPaginate::ActionView::LinkRenderer } )
super.try :html_safe
end
end
end