Created At: 2026-06-14T16:18:39Z
Completed At: 2026-06-14T16:18:39Z
File Path: `file:///c:/Users/HP/Downloads/climate-system/climate-system/index.php`
Total Lines: 3882
Total Bytes: 163903
Showing lines 3850 to 3882
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.
3850:         'futureSetGraphUncertainty',
3851:         'futureSetGraphSSP1Slope',
3852:         'futureSetGraphSSP2Slope',
3853:         'futureSetGraphSSP3Slope',
3854:         'futureSetGraphSSP5Slope'
3855:       ];
3856:       if (e.target && settingsInputs.includes(e.target.id)) {
3857:         updateSettingsChartPreview();
3858:       }
3859:     });
3860: 
3861:     // Jalankan pemuatan filter dan sinkronisasi auth saat halaman siap
3862:     window.addEventListener('DOMContentLoaded', async () => {
3863:       await loadFilters();
3864:       // Render initial default settings chart preview
3865:       updateSettingsChartPreview();
3866:       // Render initial default main chart from filters
3867:       applyFutureFilter();
3868:       try {
3869:         const res = await fetch('?action=check_auth');
3870:         const authData = await res.json();
3871:         if (authData.authenticated) {
3872:           isAdminLoggedIn = true;
3873:         }
3874:       } catch (err) {
3875:         console.error('Gagal memverifikasi status otentikasi awal:', err);
3876:       }
3877:     });
3878:   </script>
3879: </body>
3880: 
3881: </html>
3882: 
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.
