Fix whitespace issues

settings-file-dialogs
csharpen 2022-07-17 05:32:05 +00:00
rodzic d408bfb71d
commit e5b9b69ec0
1 zmienionych plików z 12 dodań i 12 usunięć

Wyświetl plik

@ -3432,21 +3432,21 @@ function doubleCompile(award, firstLevel)
function listShortInstances()
{
let shortInstances = [];
if (typeof window.opener.g_instancesIndex != "undefined" && typeof window.opener.g_instances != "undefined")
let shortInstances = [];
if (typeof window.opener.g_instancesIndex != "undefined" && typeof window.opener.g_instances != "undefined")
{
if (window.opener.g_instancesIndex.length > 1)
{
if (window.opener.g_instancesIndex.length > 1)
let instances = window.opener.g_instances;
let keys = Object.keys(instances).sort();
for (let key in keys)
{
let instances = window.opener.g_instances;
let keys = Object.keys(instances).sort();
for (let key in keys)
{
let inst = keys[key];
let sp = inst.split(" - ");
let shortInst = sp[sp.length - 1].substring(0, 18);
shortInstances.push(shortInst);
}
let inst = keys[key];
let sp = inst.split(" - ");
let shortInst = sp[sp.length - 1].substring(0, 18);
shortInstances.push(shortInst);
}
}
}
return shortInstances;
}