fix: don't error when clicks dispatch on annotation link child

reproducible by clicking on lyrics in <i> or <b> tags
This commit is contained in:
Solomon Victorino 2024-06-23 18:01:04 -06:00
parent 694d58d6ae
commit f6487d86fd

View File

@ -26,7 +26,7 @@ window.addEventListener("load", () => {
function getAnnotation(e) {
e.preventDefault()
//document.querySelector('.annotation')?.remove()
const link = e.target.parentElement
const link = e.currentTarget
const uri = link.getAttribute("href")
const presentAnnotation = link.nextElementSibling.matches(".annotation") && link.nextElementSibling
if (presentAnnotation) {