1
0
mirror of https://github.com/kognise/water.css.git synced 2025-07-31 10:20:31 +02:00

Update theme switching code

This commit is contained in:
Kognise
2019-04-05 09:21:05 -04:00
parent aabd59c3ea
commit 5ae08050ad

View File

@@ -1,11 +1,11 @@
document.getElementById('switch').addEventListener('click', () => {
const { body } = document
const ph = document.getElementById('ph')
if (body.className) {
body.className = ''
if (body.classList.contains('light')) {
body.classList.remove('light')
ph.src = ph.src.replace('theme=light', 'theme=dark')
} else {
body.className = 'light'
body.classList.add('light')
ph.src = ph.src.replace('theme=dark', 'theme=light')
}
})