mirror of
https://github.com/kennethreitz/kjvstudy.org.git
synced 2026-06-05 23:00:16 +00:00
Add '1' keyboard shortcut to navigate home from anywhere
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -1649,6 +1649,10 @@
|
||||
// Single key shortcuts for navigation (only work without modifiers)
|
||||
if (!e.metaKey && !e.ctrlKey && !e.altKey) {
|
||||
switch(e.key) {
|
||||
case '1':
|
||||
e.preventDefault();
|
||||
window.location.href = '/';
|
||||
break;
|
||||
case '`':
|
||||
e.preventDefault();
|
||||
var toggle = document.getElementById('sidebar-toggle');
|
||||
|
||||
Reference in New Issue
Block a user