1
0
Fork 0
mirror of https://github.com/lise-henry/crowbook synced 2024-05-27 17:16:15 +02:00

Display toc when you click on 'display all chapters'

This commit is contained in:
Elisabeth Henry 2016-10-21 22:01:22 +02:00
parent f5bf9e204e
commit 1e8a79f87d

View File

@ -47,7 +47,7 @@ function getChapter(elem) {
}
function switchAll() {
if (!displayAll){
if (!displayAll) {
displayAll = true;
var chapters = document.getElementsByClassName("chapter");
for (i = 0; i < chapters.length; i++) {
@ -57,11 +57,15 @@ function switchAll() {
for (i = 0; i < controls.length; i++){
controls[i].style.display = "none";
}
var toc = document.getElementById("toc");
if (toc) {
toc.style.display = "block";
}
displayAllSwitcher = document.getElementById("book-button");
displayAllSwitcher.src="{{{pages_svg}}}";
displayAllSwitcher.alt="{{{loc_display_one}}}";
displayAllSwitcher.title="{{{loc_display_one}}}";
}else{
} else {
displayAll = false;
showChapter(0);
displayAllSwitcher = document.getElementById("book-button");