]> www.vanbest.org Git - motioneye-debian/commitdiff
click on the camera frame buttons no longer triggers full screen
authorCalin Crisan <ccrisan@gmail.com>
Sun, 27 Oct 2013 14:44:58 +0000 (16:44 +0200)
committerCalin Crisan <ccrisan@gmail.com>
Sun, 27 Oct 2013 14:44:58 +0000 (16:44 +0200)
README.md
static/css/main.css
static/js/main.js

index f97ed09e278f975556b7d977c18f1d3257dfbf2a..597e4218a47fc32b0440dcc12cf8127634b21050 100644 (file)
--- a/README.md
+++ b/README.md
@@ -18,7 +18,7 @@ On a debian-based system you could run:
 
 ## Browser Compatibility ##
 
-motionEye works fine with most modern browsers, including IE8+.
+motionEye works fine with most modern browsers, including IE9+.
 Being designed with responsiveness in mind, it will also work nicely on mobile devices and tablets.
 
 ## Installation ##
@@ -43,6 +43,6 @@ Being designed with responsiveness in mind, it will also work nicely on mobile d
 
 ## Raspberry PI ##
 
-If running motionEye on a Raspberry PI with a *CSI camera board*, see `raspicam/readme.txt`.
+If running motionEye on a Raspberry PI with a *CSI camera board*, see `raspicam/README.md`.
 Also note that only one camera is supported when using this configuration.
 
index 13a06ab62e67741952e28337e5eb6b5535fd0c3f..62b5cd45c33a7dc9bb5002a6283083cded860cc5 100644 (file)
@@ -333,7 +333,6 @@ div.camera-frame {
     transition: all 0.2s, opacity 0s;
     margin: 2px;
     opacity: 0;
-    cursor: pointer;
 }
 
 div.modal-container div.camera-frame {
@@ -432,6 +431,7 @@ div.camera-progress {
     transition: all 0.2s linear;
     text-align: center;
     background-color: rgba(0, 0, 0, 1);
+    cursor: pointer;
 }
 
 img.camera-progress {
index 52e46727b116e34b92abf52619266c0312d6cfe3..66c7e39e77df6ec5b67292d67dd23e5bcb25d2b0 100644 (file)
@@ -1215,7 +1215,7 @@ function addCameraFrameUi(cameraId, cameraName, framerate) {
     nameSpan.html(cameraName);
     progressImg.attr('src', staticUrl + 'img/camera-progress.gif');
     
-    cameraFrameDiv.click(function () {
+    cameraProgress.click(function () {
         doFullScreenCamera(cameraId);
     });