From 6176f1b12d9099e891dd8192cedcbd1e1b6cca6a Mon Sep 17 00:00:00 2001 From: Thomas Park Date: Thu, 27 Dec 2012 23:07:25 -0500 Subject: [PATCH] clean up javascript code --- js/application.js | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/js/application.js b/js/application.js index 670947c..cd7cf0c 100755 --- a/js/application.js +++ b/js/application.js @@ -1,29 +1,29 @@ -!function ($) { +(function ($) { - $(function(){ + $(function(){ - // fix sub nav on scroll - var $win = $(window) - , $nav = $('.subnav') - , navHeight = $('.navbar').first().height() - , navTop = $('.subnav').length && $('.subnav').offset().top - navHeight - , isFixed = 0 + // fix sub nav on scroll + var $win = $(window), + $nav = $('.subnav'), + navHeight = $('.navbar').first().height(), + navTop = $('.subnav').length && $('.subnav').offset().top - navHeight, + isFixed = 0; - processScroll() + processScroll(); - $win.on('scroll', processScroll) + $win.on('scroll', processScroll); - function processScroll() { - var i, scrollTop = $win.scrollTop() - if (scrollTop >= navTop && !isFixed) { - isFixed = 1 - $nav.addClass('subnav-fixed') - } else if (scrollTop <= navTop && isFixed) { - isFixed = 0 - $nav.removeClass('subnav-fixed') - } - } + function processScroll() { + var i, scrollTop = $win.scrollTop(); + if (scrollTop >= navTop && !isFixed) { + isFixed = 1; + $nav.addClass('subnav-fixed'); + } else if (scrollTop <= navTop && isFixed) { + isFixed = 0; + $nav.removeClass('subnav-fixed'); + } + } - }) + }); -}(window.jQuery) \ No newline at end of file +})(window.jQuery); \ No newline at end of file -- 2.39.2