source for sakino.kelbie.scot
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
636 B

  1. </section>
  2. <script>
  3. // This code is only used to remember theme selection between page loads
  4. const themeSwitch = document.querySelector('.theme-switch');
  5. themeSwitch.checked = localStorage.getItem('switchedTheme') === 'true';
  6. themeSwitch.addEventListener('change', function(e) {
  7. if (e.currentTarget.checked === true) {
  8. // Add item to localstorage
  9. localStorage.setItem('switchedTheme', 'true');
  10. } else {
  11. // Remove item if theme is switched back to normal
  12. localStorage.removeItem('switchedTheme');
  13. }
  14. });
  15. </script>
  16. </body>
  17. </html>