1
0
Fork 0
mirror of https://github.com/mcasimir/kaminari-bootstrap.git synced 2022-11-09 13:46:52 -05:00

upgrade support bootstrap 3

This commit is contained in:
Sammy 2013-08-23 11:22:41 +08:00
parent be8a63f3c7
commit 8528cf59df

View file

@ -7,8 +7,7 @@
paginator: the paginator that renders the pagination tags inside paginator: the paginator that renders the pagination tags inside
-%> -%>
<%= paginator.render do -%> <%= paginator.render do -%>
<nav class="pagination"> <ul class="pagination">
<ul>
<%= first_page_tag unless current_page.first? %> <%= first_page_tag unless current_page.first? %>
<%= prev_page_tag unless current_page.first? %> <%= prev_page_tag unless current_page.first? %>
<% each_page do |page| -%> <% each_page do |page| -%>
@ -21,5 +20,4 @@
<%= next_page_tag unless current_page.last? %> <%= next_page_tag unless current_page.last? %>
<%= last_page_tag unless current_page.last? %> <%= last_page_tag unless current_page.last? %>
</ul> </ul>
</nav>
<% end -%> <% end -%>