Merge branch 'master' of https://github.com/ZenHarbinger/minimal-mistakes into feature/fix-disappearing-menu

This commit is contained in:
Michael Rose 2016-06-23 09:42:06 -04:00
commit 099f612ce9

View file

@ -16,9 +16,11 @@ $(document).ready(function(){
// fix // fix
Stickyfill.rebuild(); Stickyfill.rebuild();
Stickyfill.init(); Stickyfill.init();
$(".author__urls").show()
} else { } else {
// unfix // unfix
Stickyfill.stop(); Stickyfill.stop();
$(".author__urls").hide()
} }
}; };
@ -73,4 +75,4 @@ $(document).ready(function(){
midClick: true // allow opening popup on middle mouse click. Always set it to true if you don't provide alternative source. midClick: true // allow opening popup on middle mouse click. Always set it to true if you don't provide alternative source.
}); });
}); });