bootstrap-ruby / will_paginate-bootstrap

Integrates the Twitter Bootstrap pagination component with will_paginate
MIT License
388 stars 160 forks source link

pagination-centered class #7

Closed archonic closed 11 years ago

archonic commented 11 years ago

Works great! Very easy to integrate.

Is there a way I could center the pagination block with pagination-centered?

nickpad commented 11 years ago

You should just be able to pass the :class option to the will_paginate helper, for example:

<%= will_paginate @collection, renderer: BootstrapPagination::Rails, class: "pagination pagination-centered" %>

Maybe I need to document more clearly that all the standard will_paginate options should still be available.

archonic commented 11 years ago

Great, thanks!