2023-09-14 06:06:42 -04:00
|
|
|
const belowChatInput = document.querySelectorAll("#chat-tab > div > :nth-child(n+2), #extensions");
|
2023-09-15 23:39:37 -04:00
|
|
|
const chatParent = document.querySelector(".chat-parent");
|
2023-08-16 01:39:58 -04:00
|
|
|
|
|
|
|
function toggle_controls(value) {
|
2023-10-07 22:07:57 -04:00
|
|
|
if (value) {
|
|
|
|
belowChatInput.forEach(element => {
|
|
|
|
element.style.display = "inherit";
|
|
|
|
});
|
2023-08-16 01:39:58 -04:00
|
|
|
|
2023-10-07 22:07:57 -04:00
|
|
|
chatParent.classList.remove("bigchat");
|
|
|
|
document.getElementById("chat-input-row").classList.remove("bigchat");
|
|
|
|
document.getElementById("chat-col").classList.remove("bigchat");
|
2023-11-19 11:31:01 -05:00
|
|
|
|
|
|
|
let gallery_element = document.getElementById('gallery-extension');
|
|
|
|
if (gallery_element) {
|
|
|
|
gallery_element.style.display = 'block';
|
|
|
|
}
|
|
|
|
|
2023-10-07 22:07:57 -04:00
|
|
|
} else {
|
|
|
|
belowChatInput.forEach(element => {
|
|
|
|
element.style.display = "none";
|
|
|
|
});
|
2023-08-16 01:39:58 -04:00
|
|
|
|
2023-10-07 22:07:57 -04:00
|
|
|
chatParent.classList.add("bigchat");
|
|
|
|
document.getElementById("chat-input-row").classList.add("bigchat");
|
|
|
|
document.getElementById("chat-col").classList.add("bigchat");
|
|
|
|
}
|
2023-08-16 01:39:58 -04:00
|
|
|
}
|