blob: c6094d0ae42111e697cd9e2aa12464d599d2e1cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// get with web apis #fullscren element and on click toggle fullscreen
const darkmode = document.getElementById('darkmode');
const html = document.querySelector('html');
darkmode.addEventListener('click', () => {
if (html.dataset.theme === 'dark') {
html.dataset.theme = 'light';
} else {
html.dataset.theme = 'dark';
}
});
|