From 5e45ef6a8a8bcc908722b64df350cbf7fffce200 Mon Sep 17 00:00:00 2001 From: Nate Clark Date: Sun, 4 Feb 2024 16:36:17 -0500 Subject: [PATCH] fix hide bug --- index.html | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index cd7e211..870127b 100644 --- a/index.html +++ b/index.html @@ -289,7 +289,8 @@

WiFi connectivity

platform = null; $inst_button.hide(); $('#build-header').hide(); - $('div.firmware.radios').hide(); + $('div.firmware.radios').hide(); + $('div.build.radios').hide(); $('input[type="radio"][name="firmware"]').prop('checked', false); $('input[type="radio"][name="build"]').prop('checked', false); // show and scroll to Firmware section @@ -303,10 +304,10 @@

WiFi connectivity

if($target.data('manifest')) { $('#inst').attr('manifest', $target.data('manifest')); $('#build-header').hide(); - $inst_button.show() + $inst_button.show(); } else { $('input[type="radio"][name="build"]').prop('checked', false); - $inst_button.hide() + $inst_button.hide(); $('div.build.radios#' + hardware + '-' + platform).show(); $('html,body').animate({scrollTop:$('#build-header').show().offset().top},'slow'); }