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