diff options
author | 0neGal <mail@0negal.com> | 2022-01-19 23:48:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-19 23:48:17 +0100 |
commit | ae7de46f4748c800097f0f3c700e6525d7d7cc4f (patch) | |
tree | 5c66168894e5ad3b26e0330d24d62e1a985bea7c /src/app/launcher.js | |
parent | 2ed4338b9608211c07c4dd620e7f3b073131388a (diff) | |
parent | cc2fcbbdba49149724de7a07415d0dee23cc57d1 (diff) | |
download | Viper-ae7de46f4748c800097f0f3c700e6525d7d7cc4f.tar.gz Viper-ae7de46f4748c800097f0f3c700e6525d7d7cc4f.zip |
Merge pull request #46 from 0neGal/documentation
Adding documentation/comments
Diffstat (limited to 'src/app/launcher.js')
-rw-r--r-- | src/app/launcher.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/app/launcher.js b/src/app/launcher.js index 2c8d123..60c0d18 100644 --- a/src/app/launcher.js +++ b/src/app/launcher.js @@ -1,5 +1,7 @@ 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") @@ -18,6 +20,7 @@ function page(page) { }; page(0) +// Updates the Viper release notes ipcRenderer.on("vp-notes", (event, response) => { let content = ""; @@ -28,11 +31,13 @@ ipcRenderer.on("vp-notes", (event, response) => { vpReleaseNotes.innerHTML = markdown(content); }); + async function loadVpReleases() { ipcRenderer.send("get-vp-notes"); }; loadVpReleases(); +// Updates the Northstar release notes ipcRenderer.on("ns-notes", (event, response) => { let content = ""; |