@webex/plugin-meetings 3.9.0-next.16 → 3.9.0-next.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/breakouts/breakout.js +1 -1
- package/dist/breakouts/index.js +1 -1
- package/dist/interpretation/index.js +1 -1
- package/dist/interpretation/siLanguage.js +1 -1
- package/dist/meeting/index.js +9 -1
- package/dist/meeting/index.js.map +1 -1
- package/dist/webinar/index.js +1 -1
- package/package.json +5 -5
- package/src/meeting/index.ts +9 -1
- package/test/unit/spec/meeting/index.js +2 -2
package/dist/breakouts/index.js
CHANGED
@@ -1110,7 +1110,7 @@ var Breakouts = _webexCore.WebexPlugin.extend({
|
|
1110
1110
|
this.trigger(_constants.BREAKOUTS.EVENTS.ASK_RETURN_TO_MAIN);
|
1111
1111
|
}
|
1112
1112
|
},
|
1113
|
-
version: "3.9.0-next.
|
1113
|
+
version: "3.9.0-next.18"
|
1114
1114
|
});
|
1115
1115
|
var _default = exports.default = Breakouts;
|
1116
1116
|
//# sourceMappingURL=index.js.map
|
@@ -373,7 +373,7 @@ var SimultaneousInterpretation = _webexCore.WebexPlugin.extend({
|
|
373
373
|
throw error;
|
374
374
|
});
|
375
375
|
},
|
376
|
-
version: "3.9.0-next.
|
376
|
+
version: "3.9.0-next.18"
|
377
377
|
});
|
378
378
|
var _default = exports.default = SimultaneousInterpretation;
|
379
379
|
//# sourceMappingURL=index.js.map
|
@@ -18,7 +18,7 @@ var SILanguage = _webexCore.WebexPlugin.extend({
|
|
18
18
|
languageCode: 'number',
|
19
19
|
languageName: 'string'
|
20
20
|
},
|
21
|
-
version: "3.9.0-next.
|
21
|
+
version: "3.9.0-next.18"
|
22
22
|
});
|
23
23
|
var _default = exports.default = SILanguage;
|
24
24
|
//# sourceMappingURL=siLanguage.js.map
|
package/dist/meeting/index.js
CHANGED
@@ -3756,14 +3756,22 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
3756
3756
|
break;
|
3757
3757
|
case 28:
|
3758
3758
|
sendStartedSharingRemote = function sendStartedSharingRemote() {
|
3759
|
+
var _this15$locusInfo2, _this15$locusInfo2$in, _this15$webinar2;
|
3759
3760
|
_this15.remoteShareInstanceId = contentShare.shareInstanceId;
|
3760
3761
|
_this15.shareCAEventSentStatus.receiveStart = false;
|
3761
3762
|
_this15.shareCAEventSentStatus.receiveStop = false;
|
3763
|
+
var finalBeneficiaryId = contentShare.beneficiaryId;
|
3764
|
+
// In case of attendee in webinar, the whiteboard is shared by other participants
|
3765
|
+
if ((_this15$locusInfo2 = _this15.locusInfo) !== null && _this15$locusInfo2 !== void 0 && (_this15$locusInfo2$in = _this15$locusInfo2.info) !== null && _this15$locusInfo2$in !== void 0 && _this15$locusInfo2$in.isWebinar && (_this15$webinar2 = _this15.webinar) !== null && _this15$webinar2 !== void 0 && _this15$webinar2.selfIsAttendee) {
|
3766
|
+
if (!finalBeneficiaryId && whiteboardShare.beneficiaryId) {
|
3767
|
+
finalBeneficiaryId = whiteboardShare.beneficiaryId;
|
3768
|
+
}
|
3769
|
+
}
|
3762
3770
|
_triggerProxy.default.trigger(_this15, {
|
3763
3771
|
file: 'meetings/index',
|
3764
3772
|
function: 'remoteShare'
|
3765
3773
|
}, _constants.EVENT_TRIGGERS.MEETING_STARTED_SHARING_REMOTE, {
|
3766
|
-
memberId:
|
3774
|
+
memberId: finalBeneficiaryId,
|
3767
3775
|
url: contentShare.url,
|
3768
3776
|
shareInstanceId: _this15.remoteShareInstanceId,
|
3769
3777
|
annotationInfo: contentShare.annotation,
|