Merge pull request #10 from Junyi-99/fix-ToC-cannot-click
Fix to c cannot click
This commit is contained in:
commit
5aec1e28de
@ -37,6 +37,7 @@ html {
|
|||||||
/* 2 */
|
/* 2 */
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
/* 2 */
|
/* 2 */
|
||||||
|
scroll-behavior: smooth;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
@ -7,6 +7,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
document.querySelector(".toc").addEventListener("click", function () {
|
document.querySelector(".toc").addEventListener("click", function () {
|
||||||
|
if (event.target.tagName !== "A") {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
if (this.open) {
|
if (this.open) {
|
||||||
this.open = false;
|
this.open = false;
|
||||||
@ -15,5 +16,6 @@
|
|||||||
this.open = true;
|
this.open = true;
|
||||||
this.classList.add("expanded");
|
this.classList.add("expanded");
|
||||||
}
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
Loading…
Reference in New Issue
Block a user