A lot of things

This commit is contained in:
2026-06-16 16:21:43 +02:00
parent b079c07cf4
commit 039f32872c
10 changed files with 2286 additions and 45 deletions

View File

@@ -3,4 +3,10 @@
document.addEventListener('DOMContentLoaded', function() {
lucide.createIcons();
});
window.refreshIcons = (container = document) => {
const pending = container.querySelectorAll('[data-lucide]');
if (pending.length === 0) return;
lucide.createIcons();
};
</script>