Branch
Hash :
14233a70
Author :
Thomas de Grivel
Date :
2025-04-15T01:30:00
fix layout for test httpd (doc)
import $ from "jquery";
var onScroll = function () {
var page = $("body.doc div.page");
var offset = page.position();
var bottom = $(window).height() + pageYOffset - page.outerHeight();
if (bottom < 0)
bottom = 0;
$(".left-col").css("bottom", bottom + "px");
};
$(function () {
$(document).on("scroll", onScroll);
onScroll();
});