feat: add option to easily redirect to Genius website

This commit is contained in:
rramiachraf 2024-04-16 01:26:28 +01:00
parent e54ea8abec
commit 22d4ab2cda
3 changed files with 39 additions and 17 deletions

View file

@ -9,6 +9,8 @@ function showAbout() {
fullAbout && [fullAbout, summary].forEach(item => item.onclick = showAbout)
window.addEventListener("load", () => {
const geniusURL = "https://genius.com" + document.location.pathname + document.location.search
document.getElementById("goto-genius").setAttribute("href", geniusURL)
document.querySelectorAll("#lyrics a").forEach(item => {
item.addEventListener("click", getAnnotation)
})