Commit 1064c4a4 authored by Antonin Décimo's avatar Antonin Décimo Committed by Juliusz Chroboczek

Remove mentions of #anonymous-users.

parent f595da8f
......@@ -76,10 +76,6 @@ h1 {
overflow-x: hidden;
}
#anonymous-users {
white-space: nowrap;
}
#chatbox {
width: 100%;
}
......
......@@ -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)';
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment