AgileVentures/MetPlus_PETS

View on GitHub
app/helpers/remote_link_pagination_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module RemoteLinkPaginationHelper
  class BootstrapLinkRenderer < WillPaginate::ActionView::BootstrapLinkRenderer
    def link(text, target, attributes = {})
      attributes['data-remote'] = true
      super
    end
  end
end