mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-05 05:47:37 +03:00
fix: don't create duplicate annotation elements
This commit is contained in:
parent
a614f9b2a0
commit
d3b40590de
1 changed files with 3 additions and 1 deletions
|
@ -32,10 +32,12 @@ 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)) {
|
||||||
e.target.parentElement.insertAdjacentElement('afterend', annotationDiv)
|
e.target.parentElement.insertAdjacentElement('afterend', annotationDiv)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
window._currentTheme = localStorage.getItem("_theme") || "light"
|
window._currentTheme = localStorage.getItem("_theme") || "light"
|
||||||
setTheme(window._currentTheme)
|
setTheme(window._currentTheme)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue