Display anonymous users in the user list

This commit is contained in:
yflory
2017-03-06 14:56:41 +01:00
parent cb88227e2b
commit 77d09f64e1
3 changed files with 3 additions and 1 deletions

View File

@@ -296,7 +296,7 @@ define([
}
if (anonymous > 0) {
var text = anonymous === 1 ? Messages.anonymousUser : Messages.anonymousUsers;
$editUsers.push('<span class="anonymous">' + anonymous + ' ' + text + '</span>');
$editUsers.append('<span class="anonymous">' + anonymous + ' ' + text + '</span>');
}
if (numberOfViewUsers > 0) {
var viewText = '<span class="viewer">';