summaryrefslogtreecommitdiff
path: root/solr_search.js
blob: 8774e13430ac723ea1cb5754c7c2849c9ca5af13 (plain)
1
2
3
4
5
6
7
8
9
10
11
$(document).ready(function(){
    $("#topcontrol").stop().fadeOut();
	$(window).bind("scroll", function() {
    if ($(this).scrollTop() > 950) {
        $("#topcontrol").show();
		
    } else {
        $("#topcontrol").hide();
    }
});
});