|
| 1 | + |
| 2 | + |
1 | 3 | <!DOCTYPE html> |
2 | 4 | <html lang="en"> |
3 | 5 | <head> |
@@ -2717,22 +2719,17 @@ <h3>C Unions Basics:</h3> |
2717 | 2719 | <div class="quiz-feedback"></div> </div> |
2718 | 2720 | </div> |
2719 | 2721 | </div> |
2720 | | -<div id="saturday-content-week6" class="day-content day-section"> |
2721 | | -<p style="text-align: center; font-style: italic; color: #555;">QUIZ IS LIVE!</p> |
2722 | | -<button style="display: block; margin: 0 auto;" onclick="quiz.html">Brain Cache Quiz</button> |
2723 | 2722 |
|
2724 | 2723 | </div> <!-- add week6 content before these --> |
2725 | 2724 | <div id="week7" class="week-content"> |
2726 | | - <p style="text-align: left; font-weight: bold; font-size: 18px; margin-bottom: 10px; color: #00408f;"> |
| 2725 | +<p style="text-align: left; font-weight: bold; font-size: 18px; margin-bottom: 10px; color: #00408f;"> |
2727 | 2726 | Mindmash |
2728 | 2727 | </p> |
2729 | 2728 | <div class="nested-tab-nav"> |
2730 | 2729 | <button class="tab-button" onclick="showDay('monday-content-week7', this, 'week7')">Quiz 1</button> |
2731 | 2730 | </div> |
2732 | 2731 |
|
2733 | 2732 | <div id="monday-content-week7" class="day-content day-section"> |
2734 | | - <p style="text-align: left; font-weight: bold; font-size: 18px; margin-bottom: 10px; color: #00408f;"> |
2735 | | - Section under construction!</p> |
2736 | 2733 | <div class="content-block"> |
2737 | 2734 | <h3>1. What are header files in C programming?</h3> |
2738 | 2735 | <ol> |
@@ -3187,17 +3184,17 @@ <h3>25. Why is `fgets()` used for reading the student name instead of `scanf("%s |
3187 | 3184 | // --- CONTROL KEYWORD HERE --- |
3188 | 3185 | // Define a variable to store the ID of the disabled week |
3189 | 3186 | // Set this to the week you want to disable (e.g., 'week4', 'week2', or null if no week is disabled) |
3190 | | -let disabledWeekId = 'null'; // Changed from 'null' to null to ensure no week is disabled |
| 3187 | +let disabledWeekId = null; // Changed from 'null' to null to ensure no week is disabled |
3191 | 3188 |
|
3192 | 3189 | // Define an array of disabled days for a given week (e.g., ['tuesday', 'thursday'] for week1) |
3193 | 3190 | const disabledDays = { |
3194 | 3191 | // Uncomment these lines and specify days if you want to disable specific days within weeks |
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'], |
| 3192 | + // 'week1': [], // Example: No disabled days for Week 1 |
| 3193 | + // 'week2': [], |
| 3194 | + // 'week3': [], |
| 3195 | + // 'week4': [], |
| 3196 | + // 'week5': [], |
| 3197 | + // 'week6': [], |
3201 | 3198 | // 'week7': [], // Mindmash - no disabled days here for now |
3202 | 3199 | }; |
3203 | 3200 | // --- END CONTROL KEYWORD --- |
|
0 commit comments