IE - Fixed scrolling issue with navbar when scrolling up.

This commit is contained in:
Tarabass
2016-02-07 20:00:58 +01:00
parent 34c689ff17
commit 32ddfce52e
2 changed files with 27 additions and 27 deletions

View File

@@ -1021,7 +1021,7 @@ jQuery(document).ready(function($) {
} else {
$('.navbar-custom').removeClass('is-visible is-fixed');
}
} else {
} else if (currentTop > this.previousTop) {
//if scrolling down...
$('.navbar-custom').removeClass('is-visible');
if (currentTop > headerHeight && !$('.navbar-custom').hasClass('is-fixed')) $('.navbar-custom').addClass('is-fixed');

File diff suppressed because one or more lines are too long