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 |
+1 for pjambet mod
It didn't happen to me until I had a Page Gap in the Link Renderer
thanks!
Bad ass!
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'
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 don't know exactly why, but with your version I had a
so I changed it based on the links you gave at the top of your gists
https://gist.github.com/pjambet/5229322
thanks :)