X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/de793fb01de039898adf25f5ae02fe39ec2e03a8..0a9dc1651e1476c904d9172bf9f522b9b18a779a:/lib/classic_pagination/pagination_helper.rb diff --git a/lib/classic_pagination/pagination_helper.rb b/lib/classic_pagination/pagination_helper.rb index 72d16fc98..c450de4e1 100644 --- a/lib/classic_pagination/pagination_helper.rb +++ b/lib/classic_pagination/pagination_helper.rb @@ -145,7 +145,7 @@ module ActionView items = [] if always_show_anchors && !(wp_first = window_pages[0]).first? - items.push [first.number.to_s, first.number] + items.push [first.number.to_s, first] items.push ["...", "disabled"] if wp_first.number - first.number > 1 end @@ -153,13 +153,13 @@ module ActionView if current_page == page && !link_to_current_page items.push [page.number.to_s, "active"] else - items.push [page.number.to_s, page.number] + items.push [page.number.to_s, page] end end if always_show_anchors && !(wp_last = window_pages[-1]).last? items.push ["...", "disabled"] if last.number - wp_last.number > 1 - items.push [last.number.to_s, last.number] + items.push [last.number.to_s, last] end items