1
Fork 0
mirror of https://github.com/jech/galene.git synced 2024-11-09 18:25:58 +01:00

Remove mentions of #anonymous-users.

This commit is contained in:
Antonin Décimo 2020-05-10 21:18:09 +02:00 committed by Juliusz Chroboczek
parent f595da8fa9
commit 1064c4a47b
2 changed files with 0 additions and 5 deletions

View file

@ -76,10 +76,6 @@ h1 {
overflow-x: hidden;
}
#anonymous-users {
white-space: nowrap;
}
#chatbox {
width: 100%;
}

View file

@ -682,7 +682,6 @@ function addUser(id, name) {
users[id] = name;
let div = document.getElementById('users');
let anon = document.getElementById('anonymous-users');
let user = document.createElement('div');
user.id = 'user-' + id;
user.textContent = name ? name : '(anon)';