static/media/js/sjl.js @ 45f150f813d7
PUSH
author |
Steve Losh <steve@stevelosh.com> |
date |
Sun, 12 Aug 2018 15:35:27 +0000 |
parents |
ceb68ee2312a |
children |
(none) |
function ready(fn) {
if (document.attachEvent ? document.readyState === "complete" : document.readyState !== "loading"){
fn();
} else {
document.addEventListener('DOMContentLoaded', fn);
}
}
ready(function() {
hiddenToc = document.querySelectorAll('#leaf-toc');
actualToc = document.querySelectorAll('#toc');
if (hiddenToc.length && actualToc.length) {
// hugo's toc support is fucked so we need to move shit around by hand
// computers are garbage
actualToc[0].innerHTML = hiddenToc[0].innerHTML;
}
});