fix bug
This commit is contained in:
parent
0f2fc30529
commit
e9269aadb8
@ -76,7 +76,7 @@ main {
|
|||||||
/* Table of Contents */
|
/* Table of Contents */
|
||||||
|
|
||||||
.toc {
|
.toc {
|
||||||
/* cursor: zoom-in; */
|
cursor: zoom-in;
|
||||||
display: block;
|
display: block;
|
||||||
|
|
||||||
margin-top: 1em;
|
margin-top: 1em;
|
||||||
@ -90,10 +90,10 @@ main {
|
|||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
/*
|
|
||||||
.toc.expanded {
|
.toc.expanded {
|
||||||
cursor: zoom-out;
|
cursor: zoom-out;
|
||||||
} */
|
}
|
||||||
|
|
||||||
.toc .inner {
|
.toc .inner {
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
|
@ -5,15 +5,17 @@
|
|||||||
</details>
|
</details>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
<!-- <script>
|
<script>
|
||||||
document.querySelector(".toc").addEventListener("click", function () {
|
document.querySelector(".toc").addEventListener("click", function () {
|
||||||
event.preventDefault();
|
if (event.target.tagName !== "A") {
|
||||||
if (this.open) {
|
event.preventDefault();
|
||||||
this.open = false;
|
if (this.open) {
|
||||||
this.classList.remove("expanded");
|
this.open = false;
|
||||||
} else {
|
this.classList.remove("expanded");
|
||||||
this.open = true;
|
} else {
|
||||||
this.classList.add("expanded");
|
this.open = true;
|
||||||
|
this.classList.add("expanded");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
</script> -->
|
</script>
|
||||||
|
Loading…
Reference in New Issue
Block a user