diff --git a/_includes/js.html b/_includes/js.html index 5b5a106..89b3ab2 100755 --- a/_includes/js.html +++ b/_includes/js.html @@ -11,7 +11,11 @@ - + + {% if site.google-tracking-id %} diff --git a/img/career/baracktocat.jpg b/img/career/baracktocat.jpg index 51ea95f..6a55b17 100644 Binary files a/img/career/baracktocat.jpg and b/img/career/baracktocat.jpg differ diff --git a/img/career/default.png b/img/career/default.png index 7f7bfce..9b0dc48 100644 Binary files a/img/career/default.png and b/img/career/default.png differ diff --git a/img/career/spidertocat.png b/img/career/spidertocat.png index 636f148..e3ff5a0 100644 Binary files a/img/career/spidertocat.png and b/img/career/spidertocat.png differ diff --git a/img/intro-bg.jpg b/img/intro-bg.jpg index 43a4c7e..a0fcd2c 100644 Binary files a/img/intro-bg.jpg and b/img/intro-bg.jpg differ diff --git a/img/jetpacktocat.png b/img/jetpacktocat.png index cd7b06a..d4e867e 100644 Binary files a/img/jetpacktocat.png and b/img/jetpacktocat.png differ diff --git a/img/labtocat.png b/img/labtocat.png index 6573e33..4352e7f 100644 Binary files a/img/labtocat.png and b/img/labtocat.png differ diff --git a/js/grayscale.js b/js/grayscale.js deleted file mode 100755 index 94d3f3f..0000000 --- a/js/grayscale.js +++ /dev/null @@ -1,31 +0,0 @@ -/*! - * Start Bootstrap - Grayscale Bootstrap Theme (http://startbootstrap.com) - * Code licensed under the Apache License v2.0. - * For details, see http://www.apache.org/licenses/LICENSE-2.0. - */ - -// jQuery to collapse the navbar on scroll -$(window).scroll(function() { - if ($(".navbar").offset().top > 50) { - $(".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 - }, 1500, 'easeInOutExpo' - , function(){ $anchor.blur(); }); - event.preventDefault(); - }); -}); - -// Closes the Responsive Menu on Menu Item Click -$('.navbar-collapse ul li a').click(function() { - $('.navbar-toggle:visible').click(); -});