1
0
mirror of https://github.com/lise-henry/crowbook synced 2024-09-30 04:51:21 +02:00
crowbook/templates/script.js
2016-03-12 14:40:06 +01:00

28 lines
840 B
JavaScript

/* Builtin script also includes html_dir.script */
function showChapter(chap,noreset) {
var chapters = document.getElementsByClassName("chapter");
for (i = 0; i < chapters.length; i++) {
if (i == chap) {
chapters[i].style.display = "block";
} else {
chapters[i].style.display = "none";
}
}
var controls = document.getElementsByClassName("chapterControls");
for (i = 0; i < controls.length; i++) {
if (i>=chap*2-1 && i<=chap*2){
controls[i].style.display = "block";
} else {
controls[i].style.display = "none";
}
}
if (!noreset) {
window.location.hash = "#chapter-"+chap;
}
}
window.onload = function(){
showChapter(0, true);
var controls = document.getElementsByClassName("chapterControls");
};