mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-04 21:37:38 +03:00
Merge pull request #53 from sgvictorino/prevent-duplicate-annotation-cards
fix: don't create duplicate annotation elements
This commit is contained in:
commit
aac426d27e
1 changed files with 3 additions and 1 deletions
|
@ -41,7 +41,9 @@ function getAnnotation(e) {
|
|||
annotationDiv.innerHTML = parsedReponse.html
|
||||
annotationDiv.id = uri
|
||||
annotationDiv.className = "annotation"
|
||||
e.target.parentElement.insertAdjacentElement('afterend', annotationDiv)
|
||||
if (!document.getElementById(uri)) {
|
||||
e.target.parentElement.insertAdjacentElement('afterend', annotationDiv)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue