From f721fa6f4d91d1a53ea498082ff0aff7f08e6fa3 Mon Sep 17 00:00:00 2001 From: BrRoman Date: Tue, 9 Jan 2024 09:49:10 +0100 Subject: [PATCH] Refresh.js: a redondant function replaced by a var; a comment. --- static/js/refresh.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/js/refresh.js b/static/js/refresh.js index c63a36b..8082f57 100644 --- a/static/js/refresh.js +++ b/static/js/refresh.js @@ -10,7 +10,7 @@ function refresh_ordo(year) { // Title: content = content.concat( - '
Ordo ' + first_sunday_of_advent.getFullYear() + '-' + (first_sunday_of_advent.getFullYear() + 1) + '
' + '
Ordo ' + year + '-' + (first_sunday_of_advent.getFullYear() + 1) + '
' ); // Liturgical cycle: @@ -28,7 +28,7 @@ function refresh_ordo(year) { '
' + year + '
' ); - // Month: + // Month (November or December): content = content.concat( '
' + month_human_readable(month) + '
' );