mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-24 10:37:45 +00:00
Merge 49f3f2369b
into c048cf9b54
This commit is contained in:
commit
d1bfb5e44e
3 changed files with 17 additions and 17 deletions
|
@ -21,7 +21,7 @@
|
|||
try{
|
||||
var response = readBody(xhr);
|
||||
var parsed = JSON.parse(response);
|
||||
window.external.Boot(parsed.sId, parsed.lobbyHost, parsed.frontierHost);
|
||||
external.boot(parsed.sId, parsed.lobbyHost, parsed.frontierHost);
|
||||
}catch(err){
|
||||
document.getElementById("Error").innerHTML = "User creation failed.";
|
||||
}
|
||||
|
|
|
@ -12,8 +12,8 @@
|
|||
text-align: center;
|
||||
}
|
||||
img.fit {
|
||||
max-width: 99%;
|
||||
max-height: 99%;
|
||||
max-width: 100vw;
|
||||
max-height: 100vh;
|
||||
}
|
||||
</style>
|
||||
<title>Sapphire</title>
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
try{
|
||||
var response = readBody(xhr);
|
||||
var parsed = JSON.parse(response);
|
||||
window.external.Boot(parsed.sId, parsed.lobbyHost, parsed.frontierHost);
|
||||
external.boot(parsed.sId, parsed.lobbyHost, parsed.frontierHost);
|
||||
}catch(err){
|
||||
document.getElementById("Error").innerHTML = "Login failed.";
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue