will_paginate-bootstrap
will_paginate-bootstrap copied to clipboard
Make bootstrap rails renderer default for rails app
trafficstars
What's this PR do?
when you use this gem with rails, it requires will_paginate call with renderer option
<%= will_paginate @collection, renderer: BootstrapPagination::Rails %>
This PR avoids explicit renderer option, you can simply call will_paginate without option on your rails app
<%= will_paginate @collection %>