Commit 1e963c27 authored by Markus Bergt's avatar Markus Bergt

sdfmjsgnfajnjafg

parent e13399be
...@@ -17,14 +17,14 @@ $(document).ready(function() { ...@@ -17,14 +17,14 @@ $(document).ready(function() {
$.each(obj.UsersTable, function() { $.each(obj.UsersTable, function() {
if(this['status'] == 'online') 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 class="online"><b>'+ this['name'] +'</b></td><td style="text-align:right;">'+ this['rang'] +'</td></tr>');
} }
}); });
$('#onlineStatus').append('<tr><td>&nbsp;</td><td>&nbsp;</td></tr>'); $('#onlineStatus').append('<tr><td>&nbsp;</td><td>&nbsp;</td></tr>');
$.each(obj.UsersTable, function() { $.each(obj.UsersTable, function() {
if(this['status'] == 'offline') if(this['status'] == 'offline')
{ {
$('#onlineStatus').append('<tr><td class="offline"><b>'+ this['name'] +'</b></td><td class="offline">'+ this['rang'] +'</td></tr>'); $('#onlineStatus').append('<tr><td class="offline"><b>'+ this['name'] +'</b></td><td style="text-align:right;">'+ 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