chatTyping
Emitted when another participant is typing
This event is emitted when a participant is typing a chat message. It is throttled to roughly once every 2 seconds per participant.
It is broadcast to everyone in the meeting including the sender, so compare participantSessionId with your own participant session id and ignore your own typing events.
JavaScript
meeting.on("chatTyping", function(typing) {
});
Properties
typing is an object that contains the following properties:
| Property | Description |
|---|---|
| participantSessionId | Participant Session ID of the typing participant |
| senderName | Display name of the typing participant |
| meetingSessionId | meetingSessionId of the meeting session |