From e89ec1ebd69335bf0e5cdce8bd92c5810376753a Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 2 Dec 2025 19:51:20 -0500 Subject: [PATCH] Add keyboard shortcuts: 3 for John, 4 for Romans 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 | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/kjvstudy_org/static/base.js b/kjvstudy_org/static/base.js index b9191f3..e596979 100644 --- a/kjvstudy_org/static/base.js +++ b/kjvstudy_org/static/base.js @@ -682,6 +682,14 @@ document.addEventListener('keydown', function(e) { e.preventDefault(); window.location.href = '/book/Matthew'; break; + case '3': + e.preventDefault(); + window.location.href = '/book/John'; + break; + case '4': + e.preventDefault(); + window.location.href = '/book/Romans'; + break; case '7': e.preventDefault(); window.location.href = '/book/Psalms'; @@ -915,6 +923,8 @@ function showKeyboardHelp() { '
0Homepage
' + '
1Genesis (OT)
' + '
2Matthew (NT)
' + + '
3John
' + + '
4Romans
' + '
7Psalms
' + '
8Proverbs
' + '
9Revelation
' +