cloned in my resume & and ran rmdir .git inside the my resume dir

This commit is contained in:
notdospek 2024-04-10 22:58:57 +01:00
parent 69aa5bd310
commit 03027d1251
15 changed files with 416 additions and 0 deletions

View file

@ -0,0 +1,13 @@
function accordionHandler(button) {
var drawer = button.nextElementSibling;
switch (drawer.classList.contains('closed')) {
case true:
button.classList.add('open');
drawer.classList.remove('closed');
break;
default:
button.classList.remove('open');
drawer.classList.add('closed');
}
}