mirror of
https://github.com/kaminari/kaminari.git
synced 2022-11-09 13:44:37 -05:00
Merge pull request #298 from sasata299/modify_template_format
Align kaminari views format
This commit is contained in:
commit
07cd48d293
3 changed files with 3 additions and 3 deletions
|
@ -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>
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
'
|
||||
|
|
Loading…
Add table
Reference in a new issue