///
///
///
///
let globalClient;
let chat;
function invokeMain() {
globalClient = new TSClient();
chat = new ChatBox($("#chat"));
globalClient.setup();
//globalClient.startConnection("localhost:19974"); //TODO remove only for testing
//Modals.spawnConnectModal();
//Modals.spawnSettingsModal();
window.addEventListener("beforeunload", function (event) {
if (globalClient.serverConnection && globalClient.serverConnection.connected)
event.returnValue = "Are you really sure?
You're still connected!";
//event.preventDefault();
});
}
//# sourceMappingURL=main.js.map