For the complete documentation index, see llms.txt. This page is also available as Markdown.

Events

Events emitted by the Video Provider component.

The Video Provider emits events during its lifecycle.

Syntax

const video = document.querySelector('facephi-video-provider');

video.addEventListener('changeLoading', onChangeLoading);

Usage example

<facephi-video-provider
    onChangeChannel={(event) => console.log(event.detail)}
    onChangeLoading={(event) => {
        if (!event.detail) {
            // Start widget Flow
        }
    }}
/>

Events

Last updated