Fix footer js

This commit is contained in:
Jeremy Thomas
2025-06-27 17:28:32 +01:00
parent c8fa80a386
commit 82c5f33b96

View File

@@ -85,8 +85,9 @@ document.addEventListener("DOMContentLoaded", () => {
}
if (item.pied && $pied) {
el.className = "bd-ami bd-ami-footer";
$pied.appendChild(el);
const clone = el.cloneNode(true);
clone.className = "bd-ami bd-ami-footer";
$pied.appendChild(clone);
}
});
});