Remove "X participants" message

This commit is contained in:
Alan Friedman 2016-01-11 19:48:08 -05:00
parent 3c9608dffc
commit e6a9e01089

View File

@ -49,16 +49,7 @@ $(function() {
var message = '';
var headerMsg = '';
if (data.numUsers === 1) {
message += "There's 1 participant";
headerMsg = "1 Participant";
} else {
message += "There are " + data.numUsers + " participants";
headerMsg = data.numUsers + " participants";
}
$participants.text(data.numUsers);
log(message);
}
// Sets the client's username