fix for toc events master
authorRadek Czajka <rczajka@rczajka.pl>
Tue, 8 Oct 2024 14:35:44 +0000 (16:35 +0200)
committerRadek Czajka <rczajka@rczajka.pl>
Tue, 8 Oct 2024 14:35:44 +0000 (16:35 +0200)
src/wolnelektury/static/js/book_text/references.js

index 1a284a0..ef6c51c 100644 (file)
 
     $('a.anchor').on('click', function(e) {
         // Workaround for bad TOC markers.
-        if (($this).closest('#toc').length) return;
+        if ($(this).closest('#toc').length) return;
+        if ($(this).closest('#wltoc').length) return;
         e.preventDefault();
 
         let sel = window.getSelection();