fix a bug in toc selector
This commit is contained in:
parent
cf18ae777f
commit
3cd15e9a35
@ -17,7 +17,9 @@
|
|||||||
|
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
document.querySelector(".toc").addEventListener("click", function () {
|
var toc = document.querySelector(".toc");
|
||||||
|
if (toc) {
|
||||||
|
toc.addEventListener("click", function () {
|
||||||
if (event.target.tagName !== "A") {
|
if (event.target.tagName !== "A") {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
if (this.open) {
|
if (this.open) {
|
||||||
@ -29,4 +31,5 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
Loading…
Reference in New Issue
Block a user