From b077632503cfb398dcf56f1c2f12ccfc2e5d6a43 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 2 Dec 2025 19:49:24 -0500 Subject: [PATCH] Add '9' keyboard shortcut to go to Revelation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- kjvstudy_org/static/base.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/kjvstudy_org/static/base.js b/kjvstudy_org/static/base.js index 11ac01f..7935dc1 100644 --- a/kjvstudy_org/static/base.js +++ b/kjvstudy_org/static/base.js @@ -682,6 +682,10 @@ document.addEventListener('keydown', function(e) { e.preventDefault(); window.location.href = '/book/Matthew'; break; + case '9': + e.preventDefault(); + window.location.href = '/book/Revelation'; + break; case '`': e.preventDefault(); var toggle = document.getElementById('sidebar-toggle'); @@ -903,6 +907,7 @@ function showKeyboardHelp() { '
0Homepage
' + '
1Genesis (OT)
' + '
2Matthew (NT)
' + + '
9Revelation
' + '
bBooks
' + '
sStories
' + '
rResources
' +