rtjhurt
This commit is contained in:
parent
e9657f11f7
commit
ca6539923c
@ -1,29 +0,0 @@
|
|||||||
fetch("/api/buildings")
|
|
||||||
.then((res) => {
|
|
||||||
if (!res.ok) {
|
|
||||||
throw new Error("API Fehler");
|
|
||||||
}
|
|
||||||
return res.json();
|
|
||||||
})
|
|
||||||
.then((buildings) => {
|
|
||||||
buildings.forEach((building) => {
|
|
||||||
const element = document.querySelector(
|
|
||||||
`.building[data-id="${building.id}"]`,
|
|
||||||
);
|
|
||||||
|
|
||||||
if (!element) return;
|
|
||||||
|
|
||||||
let title = element.querySelector("title");
|
|
||||||
|
|
||||||
if (!title) {
|
|
||||||
title = document.createElementNS("http://www.w3.org/2000/svg", "title");
|
|
||||||
element.prepend(title);
|
|
||||||
}
|
|
||||||
|
|
||||||
title.textContent = building.name;
|
|
||||||
});
|
|
||||||
})
|
|
||||||
.catch((error) => {
|
|
||||||
console.error("Buildings API Fehler:", error);
|
|
||||||
});
|
|
||||||
//test
|
|
||||||
Loading…
Reference in New Issue
Block a user