in themes/solr/static/javascript/main.js [54:65]
$(function() {
var header = $(".top-bar")
$(window).scroll(function() {
var scroll = $(window).scrollTop();
if (scroll >= 150) {
$(header).addClass("shrink");
}
if (scroll < 150) {
$(header).removeClass("shrink");
}
});
});