File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
trunk/src/librustdoc/html Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 9e28156551c1a2af3c47a0937290176ccc457703
2
+ refs/heads/master: 4a6fb45ee1c51a67d75d99244446868b36f22cc6
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: 270a677d4d698916f5ad103f0afc3c070b8dbeb4
5
5
refs/heads/try: 649d35e4d830b27806705dc5352c86ab6d6fd1a1
Original file line number Diff line number Diff line change @@ -2209,7 +2209,14 @@ impl<'a> fmt::Display for Sidebar<'a> {
2209
2209
let it = self . item ;
2210
2210
let parentlen = cx. current . len ( ) - if it. is_mod ( ) { 1 } else { 0 } ;
2211
2211
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
+
2213
2220
try!( write ! ( fmt, "<p class='location'>" ) ) ;
2214
2221
for ( i, name) in cx. current . iter ( ) . take ( parentlen) . enumerate ( ) {
2215
2222
if i > 0 {
You can’t perform that action at this time.
0 commit comments