mirror of
https://github.com/kennethreitz/kjvstudy.org.git
synced 2026-06-05 23:00:16 +00:00
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:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user