rustdoc: Add setting for hiding large items

This commit is contained in:
Manish Goregaokar
2021-03-20 19:44:55 -07:00
parent 173cbecc66
commit 256e594b0a
2 changed files with 6 additions and 1 deletions

View File

@@ -2705,8 +2705,12 @@ function hideThemeButtonState() {
}
} else if (hasClass(e, "type-contents-toggle")) {
let text = e.getAttribute("data-toggle-text");
let tog = createToggle(toggle, `Show ${text}`, null, "", true);
let hideItemContents = getSettingValue("auto-hide-large-items") !== "false";
let tog = createToggle(toggle, `Show ${text}`, null, "", !hideItemContents);
e.parentNode.insertBefore(tog, e);
if (hideItemContents) {
collapseDocs(e.previousSibling.childNodes[0], "toggle");
}
}
if (e.parentNode.id === "main") {
var otherMessage = "";