From 417e8579a48b3ea91fcc280767e1c02eea4447ae Mon Sep 17 00:00:00 2001 From: Misty Stanley-Jones Date: Tue, 24 Oct 2017 16:53:08 -0700 Subject: [PATCH] Fix archive butterbar margin-top --- js/archive.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/js/archive.js b/js/archive.js index d4fae1cff6..2c0b9a2912 100644 --- a/js/archive.js +++ b/js/archive.js @@ -29,10 +29,8 @@ if (window.navigator.onLine) { $(document).scroll(function() { if ( $( 'nav' ).hasClass( 'affix' ) ) { $('#archive-butterbar').addClass('fixed').removeClass('top'); - console.log("Fixed!"); } else { $('#archive-butterbar').addClass('top').removeClass('fixed'); - console.log("Top!"); } }); });