parse_pages - refactor for external config and output to target dir

This commit is contained in:
mDuo13
2016-02-19 21:09:50 -08:00
parent cd8d63ab1d
commit 6f569795bd
93 changed files with 808 additions and 1513 deletions

View File

@@ -0,0 +1,9 @@
$(window).scroll(function() {
var footerpos = parseInt($(".footer").offset().top);
var scrollpos = $(window).scrollTop() + $(window).height();
if(scrollpos - footerpos > 0) {
$(".menubar.fixed").css("margin-bottom", scrollpos-footerpos);
} else {
$(".menubar.fixed").css("margin-bottom", 0);
}
});