2026-05-24 11:49:38 +02:00
|
|
|
<script src="https://unpkg.com/lucide@latest"></script>
|
|
|
|
|
<script>
|
|
|
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
|
|
|
lucide.createIcons();
|
|
|
|
|
});
|
2026-06-16 16:21:43 +02:00
|
|
|
|
|
|
|
|
window.refreshIcons = (container = document) => {
|
|
|
|
|
const pending = container.querySelectorAll('[data-lucide]');
|
|
|
|
|
if (pending.length === 0) return;
|
|
|
|
|
lucide.createIcons();
|
|
|
|
|
};
|
2026-05-24 11:49:38 +02:00
|
|
|
</script>
|