Show romanizations on map

master
Aadhavan Srinivasan 4 weeks ago
parent f861b73846
commit 4fece83e43

@ -17,5 +17,11 @@ function updateTranslations(response) {
.then((data) => {
elem.classList.toggle("loading");
console.log(data);
const romanizations = data;
document.querySelectorAll(".romanizationText").forEach(element => {
if (element.id.replace("Romanization", "") in romanizations) {
element.textContent = "(" + romanizations[element.id.replace("Romanization", "")][0] + ")";
}
});
});
}

Loading…
Cancel
Save