Skip to content

Commit 8c6be12

Browse files
Update weeklycontent.html
1 parent 3c62f1c commit 8c6be12

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

weeklycontent.html

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
<!DOCTYPE html>
32
<html lang="en">
43
<head>
@@ -3188,17 +3187,17 @@ <h3>25. Why is `fgets()` used for reading the student name instead of `scanf("%s
31883187
// --- CONTROL KEYWORD HERE ---
31893188
// Define a variable to store the ID of the disabled week
31903189
// Set this to the week you want to disable (e.g., 'week4', 'week2', or null if no week is disabled)
3191-
let disabledWeekId = 'week7'; // Changed from 'null' to null to ensure no week is disabled
3190+
let disabledWeekId = 'null'; // Changed from 'null' to null to ensure no week is disabled
31923191

31933192
// Define an array of disabled days for a given week (e.g., ['tuesday', 'thursday'] for week1)
31943193
const disabledDays = {
31953194
// Uncomment these lines and specify days if you want to disable specific days within weeks
3196-
'week1': ['monday','tuesday','wednesday','thursday','friday'], // Example: disabled days for Week 1
3197-
'week2': ['monday','tuesday','wednesday','thursday','friday'],
3198-
'week3': ['monday','tuesday','wednesday','thursday','friday'],
3199-
'week4': ['monday','tuesday','wednesday','thursday','friday'],
3200-
'week5': ['monday','tuesday','wednesday','thursday','friday'],
3201-
'week6': ['monday','tuesday','wednesday','thursday','friday'],
3195+
// 'week1': ['monday','tuesday','wednesday','thursday','friday'], // Example: disabled days for Week 1
3196+
// 'week2': ['monday','tuesday','wednesday','thursday','friday'],
3197+
// 'week3': ['monday','tuesday','wednesday','thursday','friday'],
3198+
// 'week4': ['monday','tuesday','wednesday','thursday','friday'],
3199+
// 'week5': ['monday','tuesday','wednesday','thursday','friday'],
3200+
// 'week6': ['monday','tuesday','wednesday','thursday','friday'],
32023201
// 'week7': [], // Mindmash - no disabled days here for now
32033202
};
32043203
// --- END CONTROL KEYWORD ---

0 commit comments

Comments
 (0)