Skip to content

Instantly share code, notes, and snippets.

@alexandrebini
Created September 27, 2010 17:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexandrebini/599411 to your computer and use it in GitHub Desktop.
Save alexandrebini/599411 to your computer and use it in GitHub Desktop.
module WillPaginateHack
def self.included(base)
base.alias_method_chain :url, :hack
end
private
def url_with_hack(page)
if page > 1
url_without_hack(page)
else
url_without_hack(nil)
end
end
end
WillPaginate::ViewHelpers::LinkRenderer.send(:include, WillPaginateHack)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment