Skip to content

Instantly share code, notes, and snippets.

View whatthewhat's full-sized avatar

Mikhail Topolskiy whatthewhat

View GitHub Profile
@whatthewhat
whatthewhat / will_paginate.rb
Created October 14, 2011 11:46 — forked from isaacbowen/will_paginate.rb
extends will_paginate to play well with Twitter's Bootstrap
# config/initializers/will_paginate.rb
module WillPaginate
module ActionView
def will_paginate(collection = nil, options = {})
options[:renderer] ||= BootstrapLinkRenderer
super.try :html_safe
end
class BootstrapLinkRenderer < LinkRenderer