From a2451f86e0eb4867d944995bc375b034a1258c91 Mon Sep 17 00:00:00 2001 From: Jon Suderman Date: Thu, 30 Oct 2014 16:39:57 -0600 Subject: [PATCH] Update extra.js --- extra.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/extra.js b/extra.js index c3218ba..1f0ba1f 100644 --- a/extra.js +++ b/extra.js @@ -1 +1,4 @@ -/* extra js */ +// Remove social bar as soon as scrolling begins +$(window).on('scroll', function(e) { + $('.social-bar').removeClass('visible'); +});