diff options
author | 0neGal <mail@0negal.com> | 2022-05-30 21:53:41 +0200 |
---|---|---|
committer | 0neGal <mail@0negal.com> | 2022-05-30 21:53:41 +0200 |
commit | 7ddfd200abad2de370d49f6a58862a71c148111d (patch) | |
tree | 39cdb07eaf4badc7f5391b55a55cfac6500e57b2 /src/app/launcher.js | |
parent | 992f747c5cd93b4fd8c5e27c3bd24766c5875a5c (diff) | |
download | Viper-7ddfd200abad2de370d49f6a58862a71c148111d.tar.gz Viper-7ddfd200abad2de370d49f6a58862a71c148111d.zip |
fixed missing commas and various syntax stuff
I know, commas aren't needed, however, going in and out of using commas
and not using them also looks bad, so generally I try to always use
them, with exceptions.
Diffstat (limited to 'src/app/launcher.js')
-rw-r--r-- | src/app/launcher.js | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/app/launcher.js b/src/app/launcher.js index 51d3a63..e0b56db 100644 --- a/src/app/launcher.js +++ b/src/app/launcher.js @@ -3,8 +3,8 @@ const markdown = require("marked").parse; // Changes the main page // This is the tabs in the sidebar function page(page) { - let pages = document.querySelectorAll(".mainContainer .contentContainer") - let btns = document.querySelectorAll(".gamesContainer button") + let btns = document.querySelectorAll(".gamesContainer button"); + let pages = document.querySelectorAll(".mainContainer .contentContainer"); for (let i = 0; i < pages.length; i++) { pages[i].classList.add("hidden"); @@ -82,7 +82,10 @@ function showVpSection(section) { } function showNsSection(section) { - if (!["main", "release", "mods"].includes(section)) throw new Error("unknown ns section"); + if (!["main", "release", "mods"].includes(section)) { + throw new Error("unknown ns section"); + } + nsMainBtn.removeAttribute("active"); nsModsBtn.removeAttribute("active"); nsReleaseBtn.removeAttribute("active"); |