renamed rconService.getUsers() to rconService.getPlayers() to be consistent

console History rotates correctly up and down
This commit is contained in:
alexfriesen
2016-05-19 18:58:36 +02:00
parent 12c58af9af
commit 90c60f9fa9
4 changed files with 30 additions and 10 deletions
+2 -2
View File
@@ -8,9 +8,9 @@ function PlayerListController( $scope, rconService, $interval )
$scope.Refresh = function ()
{
rconService.getUsers($scope, function ( users )
rconService.getPlayers($scope, function ( players )
{
$scope.Players = users;
$scope.Players = players;
});
}