Fix missing avatar in cursor tooltip

This commit is contained in:
yflory
2018-12-10 13:46:21 +01:00
parent 600c984576
commit a2e28e6e25
2 changed files with 1 additions and 2 deletions

View File

@@ -433,7 +433,7 @@ define([
$(el).css('background-color', cursor.color);
}
if (cursor.name) {
$(el).attr('title', cursor.name);
$(el).attr('title', makeTippy(cursor));
}
marks[id] = editor.setBookmark(cursorPosS, { widget: el });
} else {