Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
loeasy68
GitHub Repository: loeasy68/loeasy68.github.io
Path: blob/main/website/USB/main.js
2940 views
1
//Inits
2
let os = prompt("What is your OS")
3
let vidTubeURL = "/media/removable/Code/code/VidTube/index.html"
4
let vidTubeMac = "/Volumes/Code/code/VidTube/index.html"
5
let loGamesURL = "/media/removable/Code/code/LoGames/index.html"
6
let loGamesMac = "/Volumes/Code/code/LoGames/index.html"
7
8
// Check OS
9
vidTubeURL = (os == "MacOS") ? vidTubeMac : vidTubeURL;
10
loGamesURL = (os == "MacOS") ? loGamesMac : loGamesURL;
11
12
// Functioms
13
function vidTube() {
14
result.innerHTML = vidTubeURL
15
}
16
function loGames() {
17
result.innerHTML = loGamesURL
18
}
19
20