mirror of
https://github.com/kaminari/kaminari.git
synced 2022-11-09 13:44:37 -05:00
Remove needless to_i
calls
In PageProxy `@page` should be an Integer, so we should not call `to_i`
This commit is contained in:
parent
4b2121e750
commit
6274af1994
1 changed files with 2 additions and 2 deletions
|
@ -166,8 +166,8 @@ module Kaminari
|
|||
end
|
||||
|
||||
def single_gap?
|
||||
(@page.to_i == @options[:current_page] - @options[:window] - 1) && (@page.to_i == @options[:left] + 1) ||
|
||||
(@page.to_i == @options[:current_page] + @options[:window] + 1) && (@page.to_i == @options[:total_pages] - @options[:right])
|
||||
(@page == @options[:current_page] - @options[:window] - 1) && (@page == @options[:left] + 1) ||
|
||||
(@page == @options[:current_page] + @options[:window] + 1) && (@page == @options[:total_pages] - @options[:right])
|
||||
end
|
||||
|
||||
def out_of_range?
|
||||
|
|
Loading…
Reference in a new issue