Commit bb2aaeed authored by Markus Bergt's avatar Markus Bergt

fixed JS typo

parent da034f1c
......@@ -14,14 +14,14 @@ $(document).ready(function() {
{
$('#onlineStatus').html('');
$('#onlineStatus').append('<tr><th>Nutzername</th><th>Rang</th></tr>');
obj.UserTable.each(function(){
obj.UsersTable.each(function(){
if(this.status =='online')
{
$('#onlineStatus').append('<tr><td class="online"><b>'+ this.name +'</b></td><td class="online">'+ this.rang +'</td></tr>');
}
});
$('#onlineStatus').append('<tr><td>&nbsp;</td><td>&nbsp;</td></tr>');
obj.UserTable.each(function(){
obj.UsersTable.each(function(){
if(this.status =='offline')
{
$('#onlineStatus').append('<tr><td class="offline"><b>'+ this.name +'</b></td><td class="offline">'+ this.rang +'</td></tr>');
......
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