1
0
Fork 0
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:
yui-knk 2015-08-01 20:12:41 +09:00
parent 4b2121e750
commit 6274af1994

View file

@ -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?