Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions calendar/meet-calendar.js
Original file line number Diff line number Diff line change
Expand Up @@ -784,7 +784,7 @@ class G2Description extends Description {
* @returns {*}
*/
get element() {
var description = $('#xDescIn > [role="textbox"]');
var description = $('#xDescIn > [contenteditable="true"]');
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

xDescIn is not (no longer?) editable using the textbox attribute. This fixes it by going straight to the child element that is editable.

if (!description || description.length == 0) {
// maybe it is not editable
description = $('#xDesc > div');
Expand Down Expand Up @@ -1250,7 +1250,7 @@ function checkAndUpdateCalendarG2() {
</div>\
</content>');

$(tabEvent.parent()).append(jitsiQuickAddButton);
$(tabEvent).append(jitsiQuickAddButton);

var clickHandler
= jitsiQuickAddButton.find(
Expand Down