Difference between revisions of "Template:Bielefeld-CeBiTec/js/stylesheet"
Line 6: | Line 6: | ||
}); | }); | ||
+ | /* | ||
$(document).ready(function(){ | $(document).ready(function(){ | ||
$("#myNav").affix({ | $("#myNav").affix({ | ||
Line 13: | Line 14: | ||
}); | }); | ||
}); | }); | ||
− | + | */ | |
Revision as of 18:03, 17 September 2015
$(document).ready(function () { var shiftWindow = function() { scrollBy(0, -80) }; window.addEventListener("hashchange", shiftWindow); function load() { if (window.location.hash) shiftWindow(); } load(); });
/* $(document).ready(function(){
$("#myNav").affix({ offset: { top: 195 } });
});
- /
$('body').scrollspy({ target: '#pagenav' });
$(document).ready(function(){
$('ul.dropdown-menu [data-toggle=dropdown]').on('click', function(event) {
event.preventDefault();
event.stopPropagation();
$(this).parent().siblings().removeClass('open');
$(this).parent().toggleClass('open');
});
});