minor site content refresh

This commit is contained in:
ari melody 2023-11-27 23:29:21 +00:00
parent eac5e9dc00
commit c192350bc0
Signed by: ari
GPG key ID: CF99829C92678188
9 changed files with 119 additions and 325 deletions

View file

@ -31,15 +31,6 @@ document.querySelectorAll("h2.question").forEach(element => {
};
});
document.querySelectorAll('blockquote').forEach(
element => {
element.onclick = (e) => {
navigator.clipboard.writeText(e.target.innerText);
console.log('copied quote contents to clipboard!\n\n' + e.target.innerText);
}
}
);
fetch('/music.json')
.then(res => {
if (!res.ok) {
@ -55,5 +46,3 @@ fetch('/music.json')
music_container.append(dom);
};
});