Version 26.0 release

This commit is contained in:
steveseguin
2024-10-17 04:34:13 -04:00
parent fdc710164c
commit d91cde97de
24 changed files with 2838 additions and 2079 deletions

View File

@@ -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;
}
@@ -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 }, "*");