summary refs log tree commit diff
path: root/js/now.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/now.js')
-rw-r--r--js/now.js60
1 files changed, 0 insertions, 60 deletions
diff --git a/js/now.js b/js/now.js
deleted file mode 100644
index 5c40015..0000000
--- a/js/now.js
+++ /dev/null
@@ -1,60 +0,0 @@
-/*-----------------------------------------------------------------------------------
-/*
-/* Now JS
-/*
------------------------------------------------------------------------------------*/
-
- jQuery(document).ready(function($) {
-
-/*----------------------------------------------------*/
-/* FitText Settings
------------------------------------------------------- */
-
-    setTimeout(function() {
-        $('h1.responsive-headline').fitText(1, { minFontSize: '40px', maxFontSize: '90px' });
-    }, 100);
-
-
-/*----------------------------------------------------*/
-/*	Make sure that #header-background-image height is
-/* equal to the browser height.
------------------------------------------------------- */
-
-   $(window).on('resize', function() {
-        $('body').css({ 'width': $(window).width() })
-   });
-
-
-/*----------------------------------------------------*/
-/*	Fade In/Out Primary Navigation
-------------------------------------------------------*/
-
-   $(window).on('scroll', function() {
-
-		var h = $('header').height();
-		var y = $(window).scrollTop();
-        var nav = $('#nav-wrap');
-
-        if ( (y > h*.20) && (y < h) && ($(window).outerWidth() > 768 ) ) {
-            nav.fadeOut('fast');
-        }
-        else {
-            if (y < h*.20) {
-                nav.removeClass('opaque').fadeIn('fast');
-            }
-            else {
-                nav.addClass('opaque').fadeIn('fast');
-            }
-        }
-
-	});
-
-
-});
-
-
-
-
-
-
-