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 b15e2c1 commit e14d2efCopy full SHA for e14d2ef
src/librustdoc/html/static/js/settings.js
@@ -216,7 +216,9 @@
216
const innerHTML = `<div class="settings">${buildSettingsPageSections(settings)}</div>`;
217
const el = document.createElement(elementKind);
218
el.id = "settings";
219
- el.className = "popover";
+ if (!isSettingsPage) {
220
+ el.className = "popover";
221
+ }
222
el.innerHTML = innerHTML;
223
224
if (isSettingsPage) {
0 commit comments