1
0
Fork 0
mirror of https://github.com/kaminari/kaminari.git synced 2022-11-09 13:44:37 -05:00

refs #30 "the disabled items should simply not be emitted, even as an empty span"

"If you want to force those items to display, you can edit the partial."
This commit is contained in:
Akira Matsuda 2011-04-14 08:14:17 +09:00
parent 20a9a8cac5
commit ae5b7482eb

View file

@ -8,8 +8,8 @@
-%>
<%= paginator.render do -%>
<nav class="pagination">
<%= first_page_tag %>
<%= prev_page_tag %>
<%= first_page_tag unless current_page.first? %>
<%= prev_page_tag unless current_page.first? %>
<% each_page do |page| -%>
<% if page.left_outer? || page.right_outer? || page.inside_window? -%>
<%= page_tag page %>
@ -17,7 +17,7 @@
<%= gap_tag %>
<% end -%>
<% end -%>
<%= next_page_tag %>
<%= last_page_tag %>
<%= next_page_tag unless current_page.last? %>
<%= last_page_tag unless current_page.last? %>
</nav>
<% end -%>