Last active
September 30, 2015 04:17
-
-
Save mariszin/1719927 to your computer and use it in GitHub Desktop.
Make will_paginate generate markup for Zurb Foundation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# NOTE - I do not support this code anymore. | |
# You should use plambjet version @ https://gist.github.com/pjambet/5229322 | |
# | |
# Based on https://gist.github.com/1182136 and https://gist.github.com/1586384 | |
# Make the will_paginate generate markup for Zurb Foundation | |
# Put this in config/initializers/foundation_paginate.rb | |
module WillPaginate | |
module ViewHelpers | |
class LinkRenderer < LinkRendererBase | |
protected | |
def html_container(html) | |
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 => 'unavailable' | |
end | |
def previous_or_next_page(page, text, classname) | |
tag :li, link(text, page || '#'), :class => [classname[0..3], classname, ('unavailable' unless page)].join(' ') | |
end | |
end | |
end | |
end |
if you are still having trouble i made a gem, https://github.com/acrogenesis/will_paginate-foundation
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm getting this error
initializers/foundation_paginate.rb:6:in
module:ViewHelpers': uninitialized constant WillPaginate::ViewHelpers::LinkRendererBase (NameError)`Any help would be appreciated.
fixed
used pjambets version and included
require 'will_paginate/view_helpers/link_renderer' require 'will_paginate/view_helpers/action_view'