From: Calin Crisan <ccrisan@gmail.com>
Date: Sun, 27 Oct 2013 14:44:58 +0000 (+0200)
Subject: click on the camera frame buttons no longer triggers full screen
X-Git-Url: http://www.vanbest.org/gitweb/?a=commitdiff_plain;h=e20bd6744cbf724bb9d06ec3a36f70f9e801d467;p=motioneye-debian

click on the camera frame buttons no longer triggers full screen
---

diff --git a/README.md b/README.md
index f97ed09..597e421 100644
--- 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.
 
diff --git a/static/css/main.css b/static/css/main.css
index 13a06ab..62b5cd4 100644
--- a/static/css/main.css
+++ b/static/css/main.css
@@ -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 {
diff --git a/static/js/main.js b/static/js/main.js
index 52e4672..66c7e39 100644
--- a/static/js/main.js
+++ b/static/js/main.js
@@ -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);
     });