From a95d8bff29bbfbf30196838f3dd758658be81123 Mon Sep 17 00:00:00 2001 From: Harvey Tindall Date: Wed, 30 Jun 2021 18:25:51 +0100 Subject: [PATCH] site: add syntax highlighting for code --- site/index.html | 54 +++++++++++++++++-------------------------------- site/ts/main.ts | 9 ++++----- 2 files changed, 22 insertions(+), 41 deletions(-) diff --git a/site/index.html b/site/index.html index 7a44ed0..a3b9890 100644 --- a/site/index.html +++ b/site/index.html @@ -21,53 +21,35 @@
diff --git a/site/ts/main.ts b/site/ts/main.ts index 5f5d87b..bc2abdd 100644 --- a/site/ts/main.ts +++ b/site/ts/main.ts @@ -13,9 +13,9 @@ const debModal = new Modal(document.getElementById("modal-deb")); const debButton = document.getElementById("download-deb") as HTMLAnchorElement; debButton.onclick = debModal.toggle; -const debUnstableModal = new Modal(document.getElementById("modal-deb-unstable")); +const debUnstable = document.getElementById("deb-unstable"); const debUnstableButton = document.getElementById("download-deb-unstable") as HTMLAnchorElement; -debUnstableButton.onclick = debUnstableModal.toggle; +debUnstableButton.onclick = debModal.toggle; const stableSect = document.getElementById("sect-stable"); const unstableSect = document.getElementById("sect-unstable"); @@ -23,11 +23,10 @@ const unstableSect = document.getElementById("sect-unstable"); const stableButton = document.getElementById("download-stable") as HTMLSpanElement; const unstableButton = document.getElementById("download-unstable") as HTMLSpanElement; -const dockerStable = document.getElementById("docker-stable"); const dockerUnstable = document.getElementById("docker-unstable"); stableButton.onclick = () => { - dockerStable.classList.remove("unfocused"); + debUnstable.classList.add("unfocused"); dockerUnstable.classList.add("unfocused"); stableButton.classList.add("!high"); unstableButton.classList.remove("!high"); @@ -37,8 +36,8 @@ stableButton.onclick = () => { } unstableButton.onclick = () => { + debUnstable.classList.remove("unfocused"); dockerUnstable.classList.remove("unfocused"); - dockerStable.classList.add("unfocused"); unstableButton.classList.add("!high"); stableButton.classList.remove("!high"); stableSect.classList.add("unfocused");