Skip to content

Commit db1adb9

Browse files
Merge pull request #74 from shawndibble/patch-30
Create hide_video_boxes.js
2 parents 5bd8843 + e19c7da commit db1adb9

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

misc/hide_video_boxes.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
// Hides the camera boxes. If you just want to collapse the boxes to the name, change "camera-views" to "video-container"
2+
// Note: this has to be re-ran when the UI refreshes.
3+
4+
let cameras = document.getElementById("camera-views");
5+
cameras.style.display = cameras.style.display === "none" ? "flex" : "none";

0 commit comments

Comments
 (0)