We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 772b059 commit ade0e60Copy full SHA for ade0e60
js/main2.js
@@ -206,7 +206,8 @@
206
var self = this;
207
this.calendarDays.forEach(function(d, pos) {
208
// Advent calendar logic: only activate days that have been reached
209
- var today = new Date(2025, 11, 25); // Simulates December 5, 2025: //new Date();
+ // var today = new Date(2025, 11, 25); // Simulates December 25, 2025
210
+ var today = new Date(); // Current date
211
var year = 2025;
212
var month = 11; // December (0-based)
213
var dayOfMonth = pos + 1;
0 commit comments