read the description update

- Tidy up backend JS
- Tidy up frontend JS
- Add Emulators
- Add frame page for all stealth pages
- Add random invisible cooking inserts
- Fix header misalignment
- Random other tiny fixes and improvements
This commit is contained in:
BinBashBanana 2021-04-07 16:49:32 -07:00
parent 7f10a1ee76
commit a84ed43f31
410 changed files with 106544 additions and 49555 deletions

17
views/expr/emu-nav.js Normal file
View file

@ -0,0 +1,17 @@
var emugms = {
"vos": "vibeOS/index.html",
"gba": "?eg&core=mgba",
"nes": "?eg&core=nestopia",
"snes": "?eg&core=snes9x",
"genesis": "?eg&core=genesis_plus_gx",
"n64": "?eg&core=mupen64plus_next"
};
emugms_array = Object.keys(emugms);
for (let i = 0; i < emugms_array.length; i++) {
tryGetElement(emugms_array[i]).parentElement.onclick = function(e) {
e.preventDefault();
goFrame(emugms[emugms_array[i]]);
}
}