|
|
@@ -168,7 +168,14 @@ changes. The listener will receive an object with the following structure:
|
|
168
|
168
|
* **screenSharingStatusChanged** - receives event notifications about turning on/off the local user screen sharing. The listener will receive object with the following structure:
|
|
169
|
169
|
```javascript
|
|
170
|
170
|
{
|
|
171
|
|
-"on": on //whether screen sharing is on
|
|
|
171
|
+"on": on, //whether screen sharing is on
|
|
|
172
|
+"details": {
|
|
|
173
|
+
|
|
|
174
|
+ // From where the screen sharing is capturing, if known. Values which are
|
|
|
175
|
+ // passed include "window", "screen", "proxy", "device". The value undefined
|
|
|
176
|
+ // will be passed if the source type is unknown or screen share is off.
|
|
|
177
|
+ sourceType: sourceType
|
|
|
178
|
+}
|
|
172
|
179
|
}
|
|
173
|
180
|
```
|
|
174
|
181
|
|