Skip to content

Commit

Permalink
Version 26.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
steveseguin committed Oct 17, 2024
1 parent fdc7101 commit d91cde9
Show file tree
Hide file tree
Showing 24 changed files with 2,834 additions and 2,075 deletions.
12 changes: 11 additions & 1 deletion comms.html
Original file line number Diff line number Diff line change
Expand Up @@ -1098,6 +1098,11 @@
videoMode = true;
}

var chat = true;
if (urlParams.has('hidechat')){
chat = false;
}

if (screen.height && screen.width && (screen.height*screen.width<400000)){
mobile = true;
}
Expand Down Expand Up @@ -1834,7 +1839,12 @@

if (!mobile){
document.getElementById("chatModule").classList.remove("hidden");
}
if (!chat){
toggleChat();
}
}



iframe.onload = function(){
iframe.contentWindow.postMessage({ groups: savedSession.activeGroups , groupView: savedSession.activeViewGroups }, "*");
Expand Down
4 changes: 3 additions & 1 deletion css/icons.css
Original file line number Diff line number Diff line change
Expand Up @@ -248,4 +248,6 @@
.la-random:before {
content: "\f074"; }
.la-moon:before {
content: "\f186"; }
content: "\f186"; }
.la-mobile:before {
content: "\f10b"; }
1 change: 1 addition & 0 deletions css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -2793,6 +2793,7 @@ img {
border-radius: var(--video-rounded);
border-width: var(--video-border);
border-color: var(--video-border-color);
background-color: var(--video-holder-color);
border-style: solid;
}

Expand Down
1 change: 1 addition & 0 deletions css/variables.css
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@
--video-rounded: 0px;
--video-border: 0px;
--video-border-color: #0000;
--video-holder-color: #0000;
--video-rounded: 0px;
--button-radius: 2px;
--myvideo-max-width: min(800px,100vw);
Expand Down
159 changes: 0 additions & 159 deletions examples/chat.html

This file was deleted.

Loading

0 comments on commit d91cde9

Please sign in to comment.