af83/chouette-core

View on GitHub
app/helpers/remote_bootstrap_pagination_link_renderer.rb

Summary

Maintainability
A
0 mins
Test Coverage
# 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