1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-11-23 01:22:30 +01:00

Remove player listing since query is gone

This commit is contained in:
Dane Everitt 2017-01-14 19:16:55 -05:00
parent d223a224cd
commit af2644cf59
No known key found for this signature in database
GPG Key ID: EEA66103B3D71F53
2 changed files with 0 additions and 7 deletions

View File

@ -39,7 +39,6 @@
<th>{{ trans('base.server_name') }}</th>
<th>{{ trans('strings.node') }}</th>
<th>{{ trans('strings.connection') }}</th>
<th class="text-center">{{ trans('strings.players') }}</th>
<th class="text-center hidden-sm hidden-xs">{{ trans('strings.memory') }}</th>
<th class="text-center hidden-sm hidden-xs">{{ trans('strings.cpu') }}</th>
<th class="text-center">{{ trans('strings.status') }}</th>
@ -60,7 +59,6 @@
<td><a href="/server/{{ $server->uuidShort }}">{{ $server->name }}</a></td>
<td>{{ $server->nodeName }}</td>
<td><code>@if(!is_null($server->ip_alias)){{ $server->ip_alias }}@else{{ $server->ip }}@endif:{{ $server->port }}</code></td>
<td class="text-center" data-action="players">--</td>
<td class="text-center hidden-sm hidden-xs"><span data-action="memory">--</span> / {{ $server->memory === 0 ? '&infin;' : $server->memory }} MB</td>
<td class="text-center hidden-sm hidden-xs"><span data-action="cpu" data-cpumax="{{ $server->cpu }}">--</span> %</td>
<td class="text-center" data-action="status">@if($server->suspended === 1)<span class="label label-warning">Suspended</span>@else--@endif</td>

View File

@ -329,11 +329,6 @@ $(window).load(function () {
MemoryChart.update();
});
// Socket Recieves New Query
socket.on('query', function (data){
// Disabled.
});
// New Console Data Recieved
var outputQueue = [];
socket.on('console', function (data) {