Client/resources/app/files/assets/js/serverselector.js
CakeLancelot b837fbc7df Moved to being a single-page app
This simplifies some logic, and lets us do a sweet transition from server list to in-game.
2020-12-21 20:31:46 -06:00

14 lines
252 B
JavaScript

// Write loginInfo.php, assetInfo.php, etc.
function setGameInfo(uuid) {
}
function connectToServer() {
stopEasterEggs();
$('#of-serverselector').fadeOut('slow', function() {
setTimeout(function(){
launchGame();
}, 200);
});
}