From 953cd056aaff25e315b9be7402b55fc61c199889 Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Sun, 14 Feb 2021 18:01:46 +0100 Subject: [PATCH] Clearer links in paginator --- app/views/packages/_paginator.slim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/packages/_paginator.slim b/app/views/packages/_paginator.slim index fa342b9..bda8a3c 100644 --- a/app/views/packages/_paginator.slim +++ b/app/views/packages/_paginator.slim @@ -2,8 +2,8 @@ p // Use different pagination navigators depending on the screen width div.show-for-large - =will_paginate items, renderer: FoundationPagination::Rails, inner_window: 3, previous_label: '', next_label: '' + =will_paginate items, renderer: FoundationPagination::Rails, inner_window: 3, previous_label: 'Previous page', next_label: 'Next page' div.show-for-medium-only - =will_paginate items, renderer: FoundationPagination::Rails, inner_window: 1, previous_label: '', next_label: '' + =will_paginate items, renderer: FoundationPagination::Rails, inner_window: 1, previous_label: 'Previous', next_label: 'Next' div.show-for-small-only =will_paginate items, renderer: FoundationPagination::Rails, page_links: false, previous_label: '', next_label: ''