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() function listShortInstances()
{ {
let shortInstances = []; let shortInstances = [];
if (typeof window.opener.g_instancesIndex != "undefined" && typeof window.opener.g_instances != "undefined") 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 inst = keys[key];
let keys = Object.keys(instances).sort(); let sp = inst.split(" - ");
for (let key in keys) 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; return shortInstances;
} }