Merge branch 'staging' into cursor

This commit is contained in:
yflory 2018-12-10 13:46:27 +01:00
commit 32fc941141
2 changed files with 1 additions and 2 deletions

View file

@ -163,7 +163,6 @@ define([
data.color = Util.find(ctx.store.proxy, ['settings', 'general', 'cursor', 'color']);
data.name = ctx.store.proxy[Constants.displayNameKey] || Messages.anonymous;
data.avatar = Util.find(ctx.store.proxy, ['profile', 'avatar']);
console.log(data.color);
c.cursor = data;
sendMyCursor(ctx, client);
cb();

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 {