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 1bd4f58 commit 552e5e3Copy full SHA for 552e5e3
1 file changed
src/core/fetch/index.js
@@ -134,7 +134,11 @@ export function fetchMixin(proto) {
134
135
// Load nav
136
if (loadNavbar) {
137
+ // default show the nav
138
+ document.querySelector('.app-nav').style.display = 'inline';
139
if (path === '/' && !loadNavbarOnCover) {
140
+ // hidden nav on cover
141
+ document.querySelector('.app-nav').style.display = 'none';
142
return;
143
}
144
0 commit comments