use a smooth animation to fade in the navigation

This avoids the flash of unstyled/unprocessed content
This commit is contained in:
Andreas Gohr 2019-03-21 11:35:34 +01:00
commit 4ac10cf3be
2 changed files with 8 additions and 0 deletions

View file

@ -144,6 +144,9 @@ jQuery(function () {
}
});
// fade in the navigation (was hidden until now
$main.css({opacity: 0, visibility: "visible"}).animate({opacity: 1}, 200);
},
/**