added README.md, minor UI fixes
This commit is contained in:
@@ -22,6 +22,8 @@ const copyRenderedBtn = document.getElementById("copyRenderedBtn");
|
||||
const copyRawBtn = document.getElementById("copyRawBtn");
|
||||
const clearOutputBtn = document.getElementById("clearOutputBtn");
|
||||
const outputSection = document.querySelector(".output");
|
||||
const footerLeft = document.querySelector(".footer-left");
|
||||
const footer = document.querySelector(".footer");
|
||||
|
||||
const OUTPUT_STORAGE_KEY = "lastOutput";
|
||||
const AUTO_RUN_KEY = "autoRunDefaultTask";
|
||||
@@ -746,6 +748,8 @@ function updateOutputVisibility() {
|
||||
const shouldHide =
|
||||
state.currentPopupState !== "normal" && !state.alwaysShowOutput;
|
||||
outputSection.classList.toggle("hidden", shouldHide);
|
||||
footerLeft?.classList.toggle("hidden", shouldHide);
|
||||
footer?.classList.toggle("compact", shouldHide);
|
||||
}
|
||||
|
||||
async function persistCustomTaskState() {
|
||||
|
||||
Reference in New Issue
Block a user