no message

This commit is contained in:
2025-11-11 12:50:20 +01:00
parent 8d55b195b9
commit 19e8faa088
2 changed files with 16 additions and 3 deletions

View File

@@ -55,7 +55,7 @@ function openPopup(day) {
.then(res => res.ok ? res.text() : Promise.reject("Inhalt nicht gefunden"))
.then(html => {
activeDay = day;
popupContent.innerHTML = `<h2>${data.title}</h2>${html}`;
popupContent.innerHTML = `${html}`;
popupOverlay.classList.add("active");
// === Event für background.js (nach DOM-Initialisierung) ===