Minor refactoring

This commit is contained in:
Pax1601
2023-12-01 13:00:02 +01:00
parent 775148cec8
commit fda0b21fb0
22 changed files with 418 additions and 92 deletions

View File

@@ -12,7 +12,7 @@ export class ServerManager {
#connected: boolean = false;
#paused: boolean = false;
#REST_ADDRESS = "http://localhost:30000/olympus";
#DEMO_ADDRESS = window.location.href + "demo";
#DEMO_ADDRESS = window.location.href.split('?')[0] + "demo"; /* Remove query parameters */
#username = "";
#password = "";
#sessionHash: string | null = null;