Files
XenforoMasterTemplate/templates/public/romhackplaza_js.html
2026-06-16 16:21:43 +02:00

12 lines
378 B
HTML

<script src="https://unpkg.com/lucide@latest"></script>
<script>
document.addEventListener('DOMContentLoaded', function() {
lucide.createIcons();
});
window.refreshIcons = (container = document) => {
const pending = container.querySelectorAll('[data-lucide]');
if (pending.length === 0) return;
lucide.createIcons();
};
</script>