File tree 1 file changed +8
-1
lines changed
1 file changed +8
-1
lines changed 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