We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae270f1 commit bcdab87Copy full SHA for bcdab87
src/librustdoc/html/static/js/scrape-examples.js
@@ -17,7 +17,7 @@
17
// If the block is greater than the size of the viewer,
18
// then scroll to the top of the block. Otherwise scroll
19
// to the middle of the block.
20
- let maxLines = isHidden ? HIDDEN_MAX_LINES : DEFAULT_MAX_LINES;
+ const maxLines = isHidden ? HIDDEN_MAX_LINES : DEFAULT_MAX_LINES;
21
if (loc[1] - loc[0] > maxLines) {
22
const line = Math.max(0, loc[0] - 1);
23
scrollOffset = lines.children[line].offsetTop;
0 commit comments