diff --git a/www/common/outer/cursor.js b/www/common/outer/cursor.js index 975a426c1..41615c175 100644 --- a/www/common/outer/cursor.js +++ b/www/common/outer/cursor.js @@ -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(); diff --git a/www/common/sframe-common-codemirror.js b/www/common/sframe-common-codemirror.js index 93d25f7f9..b7dfb531e 100644 --- a/www/common/sframe-common-codemirror.js +++ b/www/common/sframe-common-codemirror.js @@ -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 {