Update web/index.html
Browse files- web/index.html +6 -2
web/index.html
CHANGED
|
@@ -2100,8 +2100,12 @@
|
|
| 2100 |
var newTheme = goingDark ? 'dark' : 'light';
|
| 2101 |
applyTheme(newTheme);
|
| 2102 |
localStorage.setItem('theme', newTheme);
|
| 2103 |
-
|
| 2104 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2105 |
}, 180);
|
| 2106 |
}
|
| 2107 |
|
|
|
|
| 2100 |
var newTheme = goingDark ? 'dark' : 'light';
|
| 2101 |
applyTheme(newTheme);
|
| 2102 |
localStorage.setItem('theme', newTheme);
|
| 2103 |
+
setTimeout(function () {
|
| 2104 |
+
overlay.style.opacity = '0';
|
| 2105 |
+
setTimeout(function () {
|
| 2106 |
+
if (typeof updateChartData === 'function') updateChartData(7);
|
| 2107 |
+
}, 200);
|
| 2108 |
+
}, 50);
|
| 2109 |
}, 180);
|
| 2110 |
}
|
| 2111 |
|