diff --git a/src/js/scrolling-nav.js b/src/js/scrolling-nav.js deleted file mode 100755 index 07fe59f..0000000 --- a/src/js/scrolling-nav.js +++ /dev/null @@ -1,29 +0,0 @@ -(function($) { - - // $(function() { - - // // jQuery to collapse the navbar on scroll - // $(window).scroll(function() { - // if ($('.navbar').offset().top > 100) { - // $('.navbar-fixed-top').addClass('top-nav-collapse'); - // } else { - // $('.navbar-fixed-top').removeClass('top-nav-collapse'); - // } - // }); - - // // jQuery for page scrolling feature - requires jQuery Easing plugin - // $(function() { - // $('a.page-scroll').bind('click', function(event) { - // var $anchor = $(this); - - // $('html, body').stop().animate({ - // scrollTop: $($anchor.attr('href')).offset().top - // }, 500, 'easeInOutExpo'); - - // event.preventDefault(); - // }); - // }); - - // }); - -}(jQuery));