videoDisabled
and videoEnabled
events dispatched by the Subscriber.
Properties
Name | Type | Description |
---|---|---|
cancelable |
Boolean | Whether the event has a default behavior that is cancelable
(true ) or not (false ). You can cancel the default behavior by
calling the preventDefault() method of the event object in the callback
function. (See preventDefault().) |
reason |
String | The reason the video was disabled or enabled. This can be set to one
of the following values:
|
target |
Object | The object that dispatched the event. |
type |
String | The type of event: "videoDisabled" or
"videoEnabled" . |
Methods
Name | Description |
---|---|
isDefaultPrevented() → {Boolean} |
Whether the default event behavior has been prevented via a call to
preventDefault() (true ) or not (false ). |
preventDefault() |
Prevents the default behavior associated with the event from taking place. |
isDefaultPrevented() → {Boolean}
preventDefault()
(true
) or not (false
).
See preventDefault().
Returns:
preventDefault()
To see whether an event has a default behavior, check the cancelable
property
of the event object.
Call the preventDefault()
method in the callback function for the event.
The following events have default behaviors:
sessionDisconnect
— See SessionDisconnectEvent.preventDefault().streamDestroyed
— See StreamEvent.preventDefault().accessDialogOpened
— See the accessDialogOpened event.accessDenied
— See the accessDenied event.