blob: fe7f2d06b08e5830b16936ee664d2f046dec0d31 (
plain)
| 1
2
3
4
5
6
7
8
 | # remote link for will paginate, using bootstrap as renderer
class RemoteBootstrapPaginationLinkRenderer < BootstrapPagination::Rails
  def link (text,target, attributes = {})
    attributes["data-remote"] = true
    super
  end
end
 |