last minute fixes and notes

This commit is contained in:
ansuz
2020-04-06 18:21:07 -04:00
parent a57bf94058
commit 2e290a6667
4 changed files with 11 additions and 4 deletions

View File

@@ -7,6 +7,7 @@ define([
'/common/media-tag.js',
'/customize/messages.js',
'/bower_components/tweetnacl/nacl-fast.min.js',
'/bower_components/croppie/croppie.min.js',
'/bower_components/file-saver/FileSaver.min.js',
'css!/bower_components/croppie/croppie.css',
@@ -28,7 +29,7 @@ define([
MT.getCursorAvatar = function (cursor) {
var html = '<span class="cp-cursor-avatar">';
html += (cursor.avatar && avatars[cursor.avatar]) || '';
html += cursor.name + '</span>';
html += Util.fixHTML(cursor.name) + '</span>';
return html;
};