1.4.2
Footer fix
This commit is contained in:
parent
5ad7289977
commit
8eb38b6c40
2 changed files with 6 additions and 3 deletions
|
|
@ -49,6 +49,9 @@ Because the app is just a web page, you can open it in multiple browser windows
|
||||||
|
|
||||||
<img src="screenshots/WebUI2.png" width=30%>
|
<img src="screenshots/WebUI2.png" width=30%>
|
||||||
|
|
||||||
|
### Tablet Screens
|
||||||
|
If you're having trouble seeing the bottom of the controls because of the footer (which can happen on tablets), just tap on the footer bar to hide it. Tap on the header bar to bring the footer back.
|
||||||
|
|
||||||
### Data Synchronization
|
### Data Synchronization
|
||||||
The app uses WebSockets to keep itself updated with the latest info from the camera. If something has gone wrong, refresh the page.
|
The app uses WebSockets to keep itself updated with the latest info from the camera. If something has gone wrong, refresh the page.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
<!------ Page Content ------>
|
<!------ Page Content ------>
|
||||||
|
|
||||||
<!-- Header Div -->
|
<!-- Header Div -->
|
||||||
<div class="flexContainerH" id="headerContainer">
|
<div class="flexContainerH" id="headerContainer" onclick="document.getElementById('footerContainer').style.display='flex'">
|
||||||
<h1>Camera Control WebUI for Blackmagic Cameras</h1>
|
<h1>Camera Control WebUI for Blackmagic Cameras</h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
@ -334,9 +334,9 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Footer Div -->
|
<!-- Footer Div -->
|
||||||
<div class="flexContainerH" id="footerContainer">
|
<div class="flexContainerH" id="footerContainer" onclick="this.style.display='none'">
|
||||||
<div id="footerLeft">
|
<div id="footerLeft">
|
||||||
<span class="">(v 1.4.1)</span>
|
<span class="">(v 1.4.2)</span>
|
||||||
<span id="activeElementSpan"></span>
|
<span id="activeElementSpan"></span>
|
||||||
</div>
|
</div>
|
||||||
<div id="footerLinks">
|
<div id="footerLinks">
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue