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:
parent
be8a63f3c7
commit
8528cf59df
1 changed files with 12 additions and 14 deletions
|
@ -7,19 +7,17 @@
|
||||||
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| -%>
|
<% if page.left_outer? || page.right_outer? || page.inside_window? -%>
|
||||||
<% if page.left_outer? || page.right_outer? || page.inside_window? -%>
|
<%= page_tag page %>
|
||||||
<%= page_tag page %>
|
<% elsif !page.was_truncated? -%>
|
||||||
<% elsif !page.was_truncated? -%>
|
<%= gap_tag %>
|
||||||
<%= gap_tag %>
|
|
||||||
<% end -%>
|
|
||||||
<% end -%>
|
<% end -%>
|
||||||
<%= next_page_tag unless current_page.last? %>
|
<% end -%>
|
||||||
<%= last_page_tag unless current_page.last? %>
|
<%= next_page_tag unless current_page.last? %>
|
||||||
</ul>
|
<%= last_page_tag unless current_page.last? %>
|
||||||
</nav>
|
</ul>
|
||||||
<% end -%>
|
<% end -%>
|
||||||
|
|
Loading…
Reference in a new issue