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

@@ -1039,10 +1039,17 @@
mobile = true;
}
var chat = true;
if (urlParams.has('hidechat')){
chat = false;
}
if (mobile){
toggleChat();
document.body.classList.add("mobile");
}
}
var password = false;
if (urlParams.has('password') || urlParams.has('pass') || urlParams.has('pw') || urlParams.has('p')) {
@@ -1731,6 +1738,10 @@
document.getElementById("chatModule").classList.remove("hidden");
if (!chat && !mobile){
toggleChat();
}
iframe.onload = function(){
iframe.contentWindow.postMessage({ groups: savedSession.groups }, "*");
}