From f114cb799ac7426e6e481f0095bd467509248e55 Mon Sep 17 00:00:00 2001 From: elioat Date: Sun, 30 Mar 2025 13:00:19 -0400 Subject: * --- js/leibovitz/index.html | 7 ++++--- js/leibovitz/leibovitz.js | 3 +++ 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/js/leibovitz/index.html b/js/leibovitz/index.html index 815726b..23132c6 100644 --- a/js/leibovitz/index.html +++ b/js/leibovitz/index.html @@ -307,6 +307,10 @@ #toggle-camera { padding: 10px 20px; font-family: 'ChicagoFLF', sans-serif; + border-right: 1px solid rgba(0, 0, 0, 0.1); + } + #toggle-camera.hidden { + display: none; } button, select, input[type="color"] { padding: 10px; @@ -371,9 +375,6 @@ text-align: center; flex: 1; } - #toggle-camera { - border-right: 1px solid rgba(0, 0, 0, 0.1); - } button.capture:disabled { background-color: #ccc; color: #5c5c5c; diff --git a/js/leibovitz/leibovitz.js b/js/leibovitz/leibovitz.js index 45821ba..0b5bfdc 100644 --- a/js/leibovitz/leibovitz.js +++ b/js/leibovitz/leibovitz.js @@ -118,6 +118,7 @@ function startCamera() { captureButton.disabled = false; captureButton.active = true; editImageButton.classList.add('hidden'); + toggleCameraButton.classList.add('hidden'); // Hide the toggle button isEditMode = false; originalImage = null; // Clear the original image updateSliderControlsVisibility(); // Show slider controls @@ -161,6 +162,7 @@ function startCamera() { }) .catch(err => { console.error('Error accessing camera: ', err); + toggleCameraButton.classList.remove('hidden'); // Show the button again if there's an error }); } @@ -175,6 +177,7 @@ function stopCamera() { focusControl.style.display = 'none'; stream = null; editImageButton.classList.remove('hidden'); + toggleCameraButton.classList.remove('hidden'); // Show the toggle button again updateSliderControlsVisibility(); // Hide slider controls if no image is loaded } } -- cgit 1.4.1-2-gfad0