We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27f4d6b commit baeea4eCopy full SHA for baeea4e
src/librustdoc/html/render.rs
@@ -644,10 +644,9 @@ themePicker.onblur = handleThemeButtonsBlur;
644
themes.appendChild(but);
645
}});"#,
646
as_json(&themes));
647
- write(cx.dst.join(&format!("theme{}.js", cx.shared.resource_suffix)),
648
- theme_js.as_bytes()
649
- )?;
650
-
+ write_minify(&cx.shared.fs, cx.path("theme.js"),
+ &theme_js,
+ options.enable_minification)?;
651
write_minify(&cx.shared.fs, cx.path("main.js"),
652
static_files::MAIN_JS,
653
options.enable_minification)?;
0 commit comments