mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-04 21:37:38 +03:00
Show annotations in the frontend
This commit is contained in:
parent
acb2695db0
commit
e40ca5dca9
3 changed files with 15 additions and 5 deletions
|
@ -15,16 +15,14 @@ document.querySelectorAll("#lyrics a").forEach(item => {
|
|||
function getAnnotation(e) {
|
||||
e.preventDefault()
|
||||
const uri = e.target.parentElement.getAttribute("href")
|
||||
console.log("Annotations are not yet implemented!", uri)
|
||||
|
||||
xhr = new XMLHttpRequest()
|
||||
xhr.open("GET", uri + "/annotations")
|
||||
xhr.send()
|
||||
xhr.onreadystatechange = function() {
|
||||
if (this.readyState == 4 && this.status == 200) {
|
||||
json = JSON.parse(this.responseText)
|
||||
alert(json.html)
|
||||
// TODO: display annotations properly
|
||||
const parsedReponse = JSON.parse(this.responseText)
|
||||
document.getElementById("annotations").innerHTML = parsedReponse.html
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue