We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5bd8843 + e19c7da commit db1adb9Copy full SHA for db1adb9
misc/hide_video_boxes.js
@@ -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