MediaSFU Angular
    Preparing search index...

    Class LaunchParticipants

    Toggles the visibility of the participants modal.

    This method checks the current visibility state of the participants modal and updates it accordingly. If the modal is currently visible, it will be hidden. If it is hidden, it will be displayed.

    The options for toggling the participants modal.

    Function to update the visibility state of the participants modal.

    Current visibility state of the participants modal.

    const launchParticipantsService = new LaunchParticipants();
    launchParticipantsService.launchParticipants({
    updateIsParticipantsModalVisible: (isVisible) => {
    console.log(`Participants modal is now ${isVisible ? 'visible' : 'hidden'}`);
    },
    isParticipantsModalVisible: false,
    });
    Index

    Constructors

    Methods

    Constructors

    Methods

    • Function

      Toggles the visibility of the participants modal.

      Parameters

      • options: LaunchParticipantsOptions

        The options object containing necessary variables and functions.

        • updateIsParticipantsModalVisible

          Function to update the visibility state of the participants modal.

        • isParticipantsModalVisible

          Current visibility state of the participants modal.

      Returns void