Skip to content

Commit

Permalink
Align kaminari views format
Browse files Browse the repository at this point in the history
  • Loading branch information
tsasaki committed Oct 19, 2012
1 parent d45a762 commit ea95f9d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/views/kaminari/_last_page.html.erb
Expand Up @@ -7,5 +7,5 @@
remote: data-remote
-%>
<span class="last">
<%= link_to_unless current_page.last?, raw(t 'views.pagination.last'), url, {:remote => remote} %>
<%= link_to_unless current_page.last?, raw(t 'views.pagination.last'), url, :remote => remote %>
</span>
2 changes: 1 addition & 1 deletion app/views/kaminari/_last_page.html.haml
Expand Up @@ -6,4 +6,4 @@
-# per_page: number of items to fetch per page
-# remote: data-remote
%span.last
= link_to_unless current_page.last?, raw(t 'views.pagination.last'), url, {:remote => remote}
= link_to_unless current_page.last?, raw(t 'views.pagination.last'), url, :remote => remote
2 changes: 1 addition & 1 deletion app/views/kaminari/_last_page.html.slim
Expand Up @@ -6,5 +6,5 @@
per_page : number of items to fetch per page
remote : data-remote
span.last
== link_to_unless current_page.last?, raw(t 'views.pagination.last'), url, {:remote => remote}
== link_to_unless current_page.last?, raw(t 'views.pagination.last'), url, :remote => remote
'

0 comments on commit ea95f9d

Please sign in to comment.