define([ 'jquery' ], function ($) { 'use strict'; var navigationWrapper = $('.nav-section__wrapper'); var minWidth = 760; var minCurrentScrollPosition = 84; /** * Function to add 'fixed-top' class to * stick the navigation to the top. */ $(document).scroll(function () { var currentScrollPosition = $(window).scrollTop(); var currentWindowWidth = $(window).width(); if (currentWindowWidth <= minWidth) return; // if (currentScrollPosition <= minCurrentScrollPosition) { // navigationWrapper.removeClass('fixed-top'); // } else { // navigationWrapper.addClass('fixed-top'); // } }); });