mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-22 08:07:56 +01:00
24 lines
1.0 KiB
JavaScript
24 lines
1.0 KiB
JavaScript
const belowChatInput = document.querySelectorAll("#chat-tab > div > :nth-child(n+2), #extensions");
|
|
const chatParent = document.querySelector(".chat-parent");
|
|
let isOld = document.querySelectorAll('.old-ui').length > 0;
|
|
|
|
function toggle_controls(value) {
|
|
if (value) {
|
|
belowChatInput.forEach(element => {
|
|
element.style.display = "inherit";
|
|
});
|
|
|
|
chatParent.classList.remove("bigchat");
|
|
document.getElementById('stop').parentElement.parentElement.parentElement.style.paddingBottom = isOld ? '0px' : '20px';
|
|
document.getElementById('show-controls').parentNode.parentNode.style.paddingBottom = isOld ? '95px' : '115px';
|
|
} else {
|
|
belowChatInput.forEach(element => {
|
|
element.style.display = "none";
|
|
});
|
|
|
|
chatParent.classList.add("bigchat");
|
|
document.getElementById('stop').parentElement.parentElement.parentElement.style.paddingBottom = '0px';
|
|
document.getElementById('show-controls').parentNode.parentNode.style.paddingBottom = '95px';
|
|
}
|
|
}
|