link boxes, [conditionally] hide them, use localizable strings, raise modal to z index 3

This commit is contained in:
John Hess 2024-06-04 23:01:36 -05:00
parent d510942558
commit 399fb8005f
6 changed files with 31 additions and 14 deletions

View file

@ -39,6 +39,7 @@ const usbButter = document.querySelector('#usb-butter');
if (usbButter) {
fetch('/usb-butter')
.then(response => {
console.log(response);
if (response.status === 200) {
usbButter.style.display = 'inherit';
}