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%>
|
||||
|
||||
### 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
|
||||
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 ------>
|
||||
|
||||
<!-- 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>
|
||||
</div>
|
||||
|
||||
|
|
@ -334,9 +334,9 @@
|
|||
</div>
|
||||
|
||||
<!-- Footer Div -->
|
||||
<div class="flexContainerH" id="footerContainer">
|
||||
<div class="flexContainerH" id="footerContainer" onclick="this.style.display='none'">
|
||||
<div id="footerLeft">
|
||||
<span class="">(v 1.4.1)</span>
|
||||
<span class="">(v 1.4.2)</span>
|
||||
<span id="activeElementSpan"></span>
|
||||
</div>
|
||||
<div id="footerLinks">
|
||||
|
|
|
|||
Loading…
Reference in a new issue