ViannyCruz commited on
Commit
829cd10
·
verified ·
1 Parent(s): 0f7414c

Update web/index.html

Browse files
Files changed (1) hide show
  1. 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
- if (typeof updateChartData === 'function') updateChartData(7);
2104
- setTimeout(function () { overlay.style.opacity = '0'; }, 50);
 
 
 
 
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