Skip to content

Commit 947a61f

Browse files
committed
---
yaml --- r: 189224 b: refs/heads/master c: 4a6fb45 h: refs/heads/master v: v3
1 parent 83fb101 commit 947a61f

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 9e28156551c1a2af3c47a0937290176ccc457703
2+
refs/heads/master: 4a6fb45ee1c51a67d75d99244446868b36f22cc6
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 270a677d4d698916f5ad103f0afc3c070b8dbeb4
55
refs/heads/try: 649d35e4d830b27806705dc5352c86ab6d6fd1a1

trunk/src/librustdoc/html/render.rs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2209,7 +2209,14 @@ impl<'a> fmt::Display for Sidebar<'a> {
22092209
let it = self.item;
22102210
let parentlen = cx.current.len() - if it.is_mod() {1} else {0};
22112211

2212-
// this is not rendered via JS, as that would hamper the accessibility
2212+
// the sidebar is designed to display sibling functions, modules and
2213+
// other miscellaneous informations. since there are lots of sibling
2214+
// items (and that causes quadratic growth in large modules),
2215+
// we refactor common parts into a shared JavaScript file per module.
2216+
// still, we don't move everything into JS because we want to preserve
2217+
// as much HTML as possible in order to allow non-JS-enabled browsers
2218+
// to navigate the documentation (though slightly inefficiently).
2219+
22132220
try!(write!(fmt, "<p class='location'>"));
22142221
for (i, name) in cx.current.iter().take(parentlen).enumerate() {
22152222
if i > 0 {

0 commit comments

Comments
 (0)