Add titles to changeset element page links

This commit is contained in:
Anton Khorev 2024-03-06 14:33:35 +03:00
parent 22a6d24857
commit b072c2935f
4 changed files with 52 additions and 11 deletions

View file

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