mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-05 05:47:37 +03:00
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:
parent
694d58d6ae
commit
f6487d86fd
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ window.addEventListener("load", () => {
|
||||||
function getAnnotation(e) {
|
function getAnnotation(e) {
|
||||||
e.preventDefault()
|
e.preventDefault()
|
||||||
//document.querySelector('.annotation')?.remove()
|
//document.querySelector('.annotation')?.remove()
|
||||||
const link = e.target.parentElement
|
const link = e.currentTarget
|
||||||
const uri = link.getAttribute("href")
|
const uri = link.getAttribute("href")
|
||||||
const presentAnnotation = link.nextElementSibling.matches(".annotation") && link.nextElementSibling
|
const presentAnnotation = link.nextElementSibling.matches(".annotation") && link.nextElementSibling
|
||||||
if (presentAnnotation) {
|
if (presentAnnotation) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue