Dylan George

Results 2 comments of Dylan George

Note: Adding a setTimeout before initializing reduces the likelihood of it failing to init Timeout 0, reduces likelihood ```javascript ngAfterViewInit(): void { setTimeout(() => { this.initPlayer(); }, 0); } ```...

Update: Waiting for the modal to complete its opening animation before initializing the player fixes the issue on my end.