about summary refs log tree commit diff stats
path: root/js/leibovitz/leibovitz.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/leibovitz/leibovitz.js')
-rw-r--r--js/leibovitz/leibovitz.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/leibovitz/leibovitz.js b/js/leibovitz/leibovitz.js
index c029d50..2f828c2 100644
--- a/js/leibovitz/leibovitz.js
+++ b/js/leibovitz/leibovitz.js
@@ -199,10 +199,10 @@ toggleCameraButton.addEventListener('click', () => {
     cameraOn = !cameraOn;
     if (cameraOn) {
         startCamera();
-        toggleCameraButton.textContent = 'Turn Camera Off';
+        toggleCameraButton.textContent = 'Camera Off';
     } else {
         stopCamera();
-        toggleCameraButton.textContent = 'Turn Camera On';
+        toggleCameraButton.textContent = 'Camera On';
     }
 });