Skip to content

Commit

Permalink
support left handed layout for presentationSemaphore
Browse files Browse the repository at this point in the history
  • Loading branch information
nikolasibalic committed Sep 23, 2023
1 parent 43270ab commit 42b9a74
Show file tree
Hide file tree
Showing 5 changed files with 68 additions and 65 deletions.
3 changes: 3 additions & 0 deletions caroline/html/js/caroline.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,18 @@ function initApp(){
var d = document.getElementById("controlspace");
var c = document.getElementById("cameraspace");
var rtp = document.getElementById("roundtable_participants");
var s = document.getElementById("semaphore");
if (leftHanded){
d.style.right="0px";
c.style.left="0px";
rtp.style.left="0px";
s.style.left="0px";
}
else {
d.style.left="0px";
c.style.right="0px";
rtp.style.right="0px";
s.style.right="0px";
}
d = d.children;
d[0].style.display="none";
Expand Down
Binary file modified caroline/html_dist/index.html.gz
Binary file not shown.
Loading

0 comments on commit 42b9a74

Please sign in to comment.