Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/janraasch/hugo-scroll.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--static/js/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/static/js/index.js b/static/js/index.js
index fe53c5d..24c34c5 100644
--- a/static/js/index.js
+++ b/static/js/index.js
@@ -74,7 +74,7 @@ var $sitehead = $("#site-head");
var g = $sitehead.offset().top;
var h = $sitehead.offset().top + $sitehead.height() - 100;
- if (w >= g && w <= h) {
+ if (w >= Math.floor(g) && w <= Math.ceil(h)) {
$(".fixed-nav").fadeOut("fast");
} else if ($(window).width() > 500) {
$(".fixed-nav").fadeIn("fast");