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 e9c8b69 commit d039589Copy full SHA for d039589
src/lib.rs
@@ -59,12 +59,15 @@ use web::page::GlobalAlert;
59
60
61
// Warning message shown in the navigation bar of every page. Set to `None` to hide it.
62
+pub(crate) static GLOBAL_ALERT: Option<GlobalAlert> = None;
63
+/*
64
pub(crate) static GLOBAL_ALERT: Option<GlobalAlert> = Some(GlobalAlert {
65
url: "https://blog.rust-lang.org/2019/09/18/upcoming-docsrs-changes.html",
66
text: "Upcoming docs.rs breaking changes!",
67
css_class: "error",
68
fa_icon: "warning",
69
});
70
+*/
71
72
73
/// Version string generated at build time contains last git
0 commit comments