Skip to content

Commit

Permalink
Automatically expand a section even after page load
Browse files Browse the repository at this point in the history
Fixes #52774
  • Loading branch information
kzys committed Aug 23, 2018
1 parent 786ccc3 commit 917cdd2
Showing 1 changed file with 32 additions and 16 deletions.
48 changes: 32 additions & 16 deletions src/librustdoc/html/static/main.js
Expand Up @@ -223,8 +223,38 @@
}
}
}

function expandSection() {
var hash = getPageId();
if (hash === null) {
return;
}

var elem = document.getElementById(hash);
if (elem && isHidden(elem.offsetParent)) {
var h3 = elem.parentNode.previousSibling;

if (h3.tagName !== 'H3') {
h3 = h3.previousSibling; // skip div.docblock
}

if (h3) {
var collapses = h3.getElementsByClassName("collapse-toggle");
if (collapses.length > 0) {
// The element is not visible, we need to make it appear!
collapseDocs(collapses[0], "show");
}
}
}
}

function onHashChange(ev) {
highlightSourceLines(ev);
expandSection();
}

highlightSourceLines(null);
window.onhashchange = highlightSourceLines;
window.onhashchange = onHashChange;

// Gets the human-readable string for the virtual-key code of the
// given KeyboardEvent, ev.
Expand Down Expand Up @@ -2213,21 +2243,7 @@
autoCollapse(getPageId(), getCurrentValue("rustdoc-collapse") === "true");

if (window.location.hash && window.location.hash.length > 0) {
var hash = getPageId();
if (hash !== null) {
var elem = document.getElementById(hash);
if (elem && elem.offsetParent === null) {
if (elem.parentNode && elem.parentNode.previousSibling) {
var collapses = elem.parentNode
.previousSibling
.getElementsByClassName("collapse-toggle");
if (collapses.length > 0) {
// The element is not visible, we need to make it appear!
collapseDocs(collapses[0], "show");
}
}
}
}
expandSection();
}
}());

Expand Down

0 comments on commit 917cdd2

Please sign in to comment.