From 6d2c067f0d6bc78eef7ececcec3eba71cbb5d80c Mon Sep 17 00:00:00 2001 From: David Luevano Alvarado Date: Tue, 1 Jun 2021 03:21:33 -0600 Subject: add fork awesome, contact and donate pages, update general style and update readme --- static/scripts/theme.js | 35 +++++++++++++++++++++++++---------- 1 file changed, 25 insertions(+), 10 deletions(-) (limited to 'static/scripts/theme.js') diff --git a/static/scripts/theme.js b/static/scripts/theme.js index 68a0cbb..489060f 100644 --- a/static/scripts/theme.js +++ b/static/scripts/theme.js @@ -16,14 +16,19 @@ window.onload = () => { switch_theme.checked = false; let theme = document.getElementById('theme-css'); - let code_theme = document.getElementById('code-theme-css'); - let href = theme.getAttribute('href'); - let code_href = code_theme.getAttribute('href'); + let href = theme.getAttribute('href'); href = href.replace('dark.css', 'light.css'); - code_href = code_href.replace('solarized-dark.min.css', 'solarized-light.min.css'); theme.setAttribute('href', href); - code_theme.setAttribute('href', code_href); + + let code_theme = document.getElementById('code-theme-css'); + + let code_href; + if (code_theme !== null){ + code_href = code_theme.getAttribute('href'); + code_href = code_href.replace('solarized-dark.min.css', 'solarized-light.min.css'); + code_theme.setAttribute('href', code_href); + } } } @@ -43,23 +48,33 @@ function setTheme(){ // toggles between both themes, and then calls set theme to actually set it persistently. function toggleTheme(){ let theme = document.getElementById('theme-css'); - let code_theme = document.getElementById('code-theme-css'); let href = theme.getAttribute('href'); - let code_href = code_theme.getAttribute('href'); + + let code_theme = document.getElementById('code-theme-css'); + let code_href; + if (code_theme !== null){ + code_href = code_theme.getAttribute('href'); + } if(href.endsWith('dark.css')){ href = href.replace('dark.css', 'light.css'); - code_href = code_href.replace('solarized-dark.min.css', 'solarized-light.min.css'); + if (code_theme !== null){ + code_href = code_href.replace('solarized-dark.min.css', 'solarized-light.min.css'); + } } else if (href.endsWith('light.css')){ href = href.replace('light.css', 'dark.css'); - code_href = code_href.replace('solarized-light.min.css', 'solarized-dark.min.css'); + if (code_theme !== null){ + code_href = code_href.replace('solarized-light.min.css', 'solarized-dark.min.css'); + } } else{ console.log('Wrong replacement.'); } theme.setAttribute('href', href); - code_theme.setAttribute('href', code_href); + if (code_theme !== null){ + code_theme.setAttribute('href', code_href); + } setTheme(); } -- cgit v1.2.3-54-g00ecf