Disable tooltips on verse number links

Prevent verse tooltips from showing when hovering over the verse
number links at the beginning of each verse paragraph. Tooltips now
only appear for verse references within the text content.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-24 16:55:54 -05:00
parent a5a6bacc11
commit c51378cb89
+3
View File
@@ -1527,6 +1527,9 @@
// Skip if this is a cross-reference link (has its own tooltip system)
if (target.classList.contains('cross-ref-link')) return;
// Skip if this is a verse number link (the number at the start of each verse)
if (target.classList.contains('verse-number-link')) return;
var verseInfo = parseVerseUrl(target.pathname + target.hash);
if (!verseInfo) return;