Skip to content

Commit e24d621

Browse files
committed
Auto merge of #33765 - alex-ozdemir:master, r=Manishearth
Added a `rustdoc` shortcut for collapse/expand all Now when the user presses the "+" key all sections will collapse/expand. Also added a note to the help screen which describes this behavior. This required increasing the height of the help screen.
2 parents 14d6a10 + ab09fbc commit e24d621

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

src/librustdoc/html/layout.rs

+2
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,8 @@ r##"<!DOCTYPE html>
103103
<dd>Move down in search results</dd>
104104
<dt>&#9166;</dt>
105105
<dd>Go to active search result</dd>
106+
<dt>+</dt>
107+
<dd>Collapse/expand all sections</dd>
106108
</dl>
107109
</div>
108110

src/librustdoc/html/static/main.js

+8-2
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,10 @@
124124
focusSearchBar();
125125
break;
126126

127+
case "+":
128+
toggleAllDocs();
129+
break;
130+
127131
case "?":
128132
if (ev.shiftKey && $("#help").hasClass("hidden")) {
129133
ev.preventDefault();
@@ -931,7 +935,7 @@
931935
return "\u2212"; // "\u2212" is '−' minus sign
932936
}
933937

934-
$("#toggle-all-docs").on("click", function() {
938+
function toggleAllDocs() {
935939
var toggle = $("#toggle-all-docs");
936940
if (toggle.hasClass("will-expand")) {
937941
toggle.removeClass("will-expand");
@@ -950,7 +954,9 @@
950954
$(".toggle-wrapper").addClass("collapsed");
951955
$(".collapse-toggle").children(".inner").text(labelForToggleButton(true));
952956
}
953-
});
957+
}
958+
959+
$("#toggle-all-docs").on("click", toggleAllDocs);
954960

955961
$(document).on("click", ".collapse-toggle", function() {
956962
var toggle = $(this);

src/librustdoc/html/static/rustdoc.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ body.blur > :not(#help) {
472472
background: #e9e9e9;
473473
box-shadow: 0 0 6px rgba(0,0,0,.2);
474474
width: 550px;
475-
height: 300px;
475+
height: 330px;
476476
border: 1px solid #bfbfbf;
477477
}
478478
#help dt {

0 commit comments

Comments
 (0)