minor site content refresh
This commit is contained in:
parent
eac5e9dc00
commit
c192350bc0
9 changed files with 119 additions and 325 deletions
|
@ -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);
|
||||
};
|
||||
});
|
||||
|
||||
|
||||
|
|
Reference in a new issue