@webex/plugin-meetings 3.0.0-beta.159 → 3.0.0-beta.160
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/index.js
CHANGED
|
@@ -1039,7 +1039,7 @@ var Breakouts = _webexCore.WebexPlugin.extend({
|
|
|
1039
1039
|
this.trigger(_constants.BREAKOUTS.EVENTS.ASK_RETURN_TO_MAIN);
|
|
1040
1040
|
}
|
|
1041
1041
|
},
|
|
1042
|
-
version: "3.0.0-beta.
|
|
1042
|
+
version: "3.0.0-beta.160"
|
|
1043
1043
|
});
|
|
1044
1044
|
var _default = Breakouts;
|
|
1045
1045
|
exports.default = _default;
|
package/dist/meeting/index.js
CHANGED
|
@@ -2497,10 +2497,15 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
2497
2497
|
key: "triggerAnnotationInfoEvent",
|
|
2498
2498
|
value: function triggerAnnotationInfoEvent(contentShare, previousContentShare) {
|
|
2499
2499
|
if (contentShare !== null && contentShare !== void 0 && contentShare.annotation && !(0, _isEqual2.default)(contentShare === null || contentShare === void 0 ? void 0 : contentShare.annotation, previousContentShare === null || previousContentShare === void 0 ? void 0 : previousContentShare.annotation)) {
|
|
2500
|
-
_triggerProxy.default.trigger(
|
|
2500
|
+
_triggerProxy.default.trigger(
|
|
2501
|
+
// @ts-ignore
|
|
2502
|
+
this.webex.meetings, {
|
|
2501
2503
|
file: 'meeting/index',
|
|
2502
2504
|
function: 'triggerAnnotationInfoEvent'
|
|
2503
|
-
}, _constants.EVENT_TRIGGERS.MEETING_UPDATE_ANNOTATION_INFO,
|
|
2505
|
+
}, _constants.EVENT_TRIGGERS.MEETING_UPDATE_ANNOTATION_INFO, {
|
|
2506
|
+
annotationInfo: contentShare === null || contentShare === void 0 ? void 0 : contentShare.annotation,
|
|
2507
|
+
meetingId: this.id
|
|
2508
|
+
});
|
|
2504
2509
|
}
|
|
2505
2510
|
}
|
|
2506
2511
|
|