mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-05 05:47:37 +03:00
fix: don't collapse annotations for clicked lyrics elsewhere on page
This commit is contained in:
parent
aac426d27e
commit
816f4cd8fa
1 changed files with 5 additions and 4 deletions
|
@ -24,8 +24,9 @@ window.addEventListener("load", () => {
|
||||||
function getAnnotation(e) {
|
function getAnnotation(e) {
|
||||||
e.preventDefault()
|
e.preventDefault()
|
||||||
//document.querySelector('.annotation')?.remove()
|
//document.querySelector('.annotation')?.remove()
|
||||||
const uri = e.target.parentElement.getAttribute("href")
|
const link = e.target.parentElement
|
||||||
const presentAnnotation = document.getElementById(uri)
|
const uri = link.getAttribute("href")
|
||||||
|
const presentAnnotation = link.nextElementSibling.matches(".annotation") && link.nextElementSibling
|
||||||
if (presentAnnotation) {
|
if (presentAnnotation) {
|
||||||
presentAnnotation.remove()
|
presentAnnotation.remove()
|
||||||
return
|
return
|
||||||
|
@ -41,8 +42,8 @@ function getAnnotation(e) {
|
||||||
annotationDiv.innerHTML = parsedReponse.html
|
annotationDiv.innerHTML = parsedReponse.html
|
||||||
annotationDiv.id = uri
|
annotationDiv.id = uri
|
||||||
annotationDiv.className = "annotation"
|
annotationDiv.className = "annotation"
|
||||||
if (!document.getElementById(uri)) {
|
if (!link.nextElementSibling.matches(".annotation")) {
|
||||||
e.target.parentElement.insertAdjacentElement('afterend', annotationDiv)
|
link.insertAdjacentElement('afterend', annotationDiv)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue