From c06eb6f4fefbaf064b4ff4c0948fa0cd1a70b7b7 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Tue, 10 Oct 2023 01:59:51 -0400 Subject: [PATCH] Don't hide all hardware when webserial unsupported (#3252) --- projects/installer.html | 9 --------- 1 file changed, 9 deletions(-) diff --git a/projects/installer.html b/projects/installer.html index 36acadae1..272ed8d1a 100644 --- a/projects/installer.html +++ b/projects/installer.html @@ -724,14 +724,5 @@ } // show unsupported note document.querySelector(".unsupported").classList.remove("hidden"); - // disable all radio - document - .querySelectorAll('input[name="type"]') - .forEach((radio) => radio.setAttribute("disabled", "disabled")); - // Hide all types - document.querySelectorAll(".type").forEach((info) => { - info.classList.add("hidden"); - }); - document.querySelector(".installer-footer").classList.add("hidden"); });