Created At: 2026-06-14T15:01:14Z
Completed At: 2026-06-14T15:01:14Z
File Path: `file:///c:/Users/HP/Downloads/climate-system/climate-system/index.php`
Total Lines: 4710
Total Bytes: 198614
Showing lines 4680 to 4700
The following code has been modified to include a line number before every line, in the format: <line_number>: <original_line>. Please note that any changes targeting the original code should remove the line number, colon, and leading space.
4680:       ];
4681:       if (e.target && settingsInputs.includes(e.target.id)) {
4682:         updateSettingsChartPreview();
4683:       }
4684:     });
4685: 
4686:     // Jalankan pemuatan filter dan sinkronisasi auth saat halaman siap
4687:     window.addEventListener('DOMContentLoaded', async () => {
4688:       await loadFilters();
4689:       // Load initial settings data (which also triggers updateSettingsChartPreview)
4690:       await loadHistoricalSettingsData();
4691:       await loadFutureMapSettingsData();
4692:       await loadFutureGraphSettingsData();
4693:       // Render initial default main chart from filters
4694:       applyFutureMapFilter();
4695:       applyFutureTSFilter();
4696:       try {
4697:         const res = await fetch('?action=check_auth');
4698:         const authData = await res.json();
4699:         if (authData.authenticated) {
4700:           isAdminLoggedIn = true;
The above content does NOT show the entire file contents. If you need to view any lines of the file which were not shown to complete your task, call this tool again to view those lines.
