craft
craft copied to clipboard
Add trigger for lang load in modal component
Add following trigger in modal.component.ts :
private async getLang() { this.lang = await import(
../i18n/s-modal-${this.siteLang}.json); if (!this.options.initTriggers) { setTimeout(() => { window.dispatchEvent(new CustomEvent('modal-loaded')); }, 0); } }