Added eslit and circle.yml

This commit is contained in:
AlexKvazos
2015-04-30 14:01:19 -05:00
parent 7794cbf56d
commit 48eb590c32
18 changed files with 67 additions and 41 deletions
+1 -3
View File
@@ -7,7 +7,7 @@ module.exports = function($scope, socket, servers) {
$scope.servers = servers.get();
$scope.select = function(id) {
$scope.ip = servers.select(id).ip;
$scope.ip = servers.select(id).ip;
$scope.port = servers.select(id).port;
if ($scope.username.length > 0 && $scope.password.length > 0) {
@@ -27,8 +27,6 @@ module.exports = function($scope, socket, servers) {
password: $scope.password,
hostname: $scope.ip,
port: $scope.port || 25565
}, function(response) {
});
} else {
+1 -1
View File
@@ -36,4 +36,4 @@ module.exports = function($scope, socket) {
});
});
};
};