diff --git a/calendar/js/et2_widget_event.js b/calendar/js/et2_widget_event.js index b1d05b523f..710f732945 100644 --- a/calendar/js/et2_widget_event.js +++ b/calendar/js/et2_widget_event.js @@ -420,7 +420,10 @@ var et2_calendar_event = /** @class */ (function (_super) { if (this.options.value['##videoconference']) { // Click handler is set in _bind_videoconference() location += (this.options.value.location.trim() ? '
' : '') + - '' + this.egw().lang('Video conference') + + '' + + this.egw().lang('Video conference') + ''; this._bind_videoconference(); } @@ -551,7 +554,7 @@ var et2_calendar_event = /** @class */ (function (_super) { var vc_event = 'click.calendar_videoconference'; jQuery('body').off(vc_event) .on(vc_event, '[data-videoconference]', function (event) { - app.calendar.joinVideoConference(this.dataset.videoconference); + app.calendar.joinVideoConference(this.dataset.videoconference, this.dataset); }); }; /** diff --git a/calendar/js/et2_widget_event.ts b/calendar/js/et2_widget_event.ts index b5f55fcf07..423a9e761b 100644 --- a/calendar/js/et2_widget_event.ts +++ b/calendar/js/et2_widget_event.ts @@ -537,7 +537,10 @@ export class et2_calendar_event extends et2_valueWidget implements et2_IDetached { // Click handler is set in _bind_videoconference() location += (this.options.value.location.trim() ? '
' : '') + - '' + this.egw().lang('Video conference') + + ''+ + this.egw().lang('Video conference') + ''; this._bind_videoconference(); } @@ -701,7 +704,7 @@ export class et2_calendar_event extends et2_valueWidget implements et2_IDetached let vc_event = 'click.calendar_videoconference'; jQuery('body').off(vc_event) .on(vc_event, '[data-videoconference]',function(event) { - app.calendar.joinVideoConference(this.dataset.videoconference); + app.calendar.joinVideoConference(this.dataset.videoconference, this.dataset); }); } /**