未验证 提交 98bd22bd 编写于 作者: D Dylan DPC 提交者: GitHub

Rollup merge of #71842 - tspiteri:doc-impl-const, r=GuillaumeGomez

doc: make impl block collapsible if it has an associated constant

Fixes #71822.
......@@ -2374,7 +2374,9 @@ function defocusSearchBar() {
if (!next) {
return;
}
if (next.getElementsByClassName("method").length > 0 && hasClass(e, "impl")) {
if (hasClass(e, "impl") &&
(next.getElementsByClassName("method").length > 0 ||
next.getElementsByClassName("associatedconstant").length > 0)) {
insertAfter(toggle.cloneNode(true), e.childNodes[e.childNodes.length - 1]);
}
};
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册