secrets and collectibles tabs

This commit is contained in:
ReznoRMichael 2022-01-14 22:50:53 +01:00
parent be2cf476cf
commit f2fd071567
3 changed files with 5 additions and 3 deletions

View file

@ -8656,7 +8656,7 @@ function GenerateInnerHTML(db) {
switch (section) { switch (section) {
case "bosses": case "bosses":
textFill += ["<div class=\"tab-switch-buttons\">", "<button id=\"button-switch-main\" name=\"main\" class=\"button tab-switch\" type=\"button\">Main %</button>", "<button id=\"button-switch-essential\" name=\"essential\" class=\"button tab-switch\" type=\"button\">Essentials %</button>", "<button id=\"button-switch-journal\" name=\"journal\" class=\"button tab-switch\" type=\"button\">Journal</button>", "<button id=\"button-switch-godhome\" name=\"godhome\" class=\"button tab-switch\" type=\"button\">Godmaster</button>", "<button id=\"button-switch-statistics\" name=\"statistics\" class=\"button tab-switch\" type=\"button\">Misc</button>", "</div>"].join("\n"); textFill += ["<div class=\"tab-switch-buttons\">", "<button id=\"button-switch-main\" name=\"main\" class=\"button tab-switch\" type=\"button\">Main %</button>", "<button id=\"button-switch-essential\" name=\"essential\" class=\"button tab-switch\" type=\"button\">Essentials %</button>", "<button id=\"button-switch-journal\" name=\"journal\" class=\"button tab-switch\" type=\"button\">Journal</button>", "<button id=\"button-switch-collectibles\" name=\"collectibles\" class=\"button tab-switch\" type=\"button\">Collectibles</button>", "<button id=\"button-switch-secrets\" name=\"secrets\" class=\"button tab-switch\" type=\"button\">Secrets</button>", "<button id=\"button-switch-godhome\" name=\"godhome\" class=\"button tab-switch\" type=\"button\">Godmaster</button>", "<button id=\"button-switch-statistics\" name=\"statistics\" class=\"button tab-switch\" type=\"button\">Statistics</button>", "</div>"].join("\n");
textFill += "<div id=\"tab-main\" class=\"large-section\">"; textFill += "<div id=\"tab-main\" class=\"large-section\">";
break; break;

File diff suppressed because one or more lines are too long

View file

@ -243,8 +243,10 @@ function GenerateInnerHTML(db) {
`<button id="button-switch-main" name="main" class="button tab-switch" type="button">Main %</button>`, `<button id="button-switch-main" name="main" class="button tab-switch" type="button">Main %</button>`,
`<button id="button-switch-essential" name="essential" class="button tab-switch" type="button">Essentials %</button>`, `<button id="button-switch-essential" name="essential" class="button tab-switch" type="button">Essentials %</button>`,
`<button id="button-switch-journal" name="journal" class="button tab-switch" type="button">Journal</button>`, `<button id="button-switch-journal" name="journal" class="button tab-switch" type="button">Journal</button>`,
`<button id="button-switch-collectibles" name="collectibles" class="button tab-switch" type="button">Collectibles</button>`,
`<button id="button-switch-secrets" name="secrets" class="button tab-switch" type="button">Secrets</button>`,
`<button id="button-switch-godhome" name="godhome" class="button tab-switch" type="button">Godmaster</button>`, `<button id="button-switch-godhome" name="godhome" class="button tab-switch" type="button">Godmaster</button>`,
`<button id="button-switch-statistics" name="statistics" class="button tab-switch" type="button">Misc</button>`, `<button id="button-switch-statistics" name="statistics" class="button tab-switch" type="button">Statistics</button>`,
`</div>`, `</div>`,
].join("\n"); ].join("\n");