diff --git a/doc/KeyboardShortcuts.md b/doc/KeyboardShortcuts.md new file mode 100644 index 0000000000..cf783b0da1 --- /dev/null +++ b/doc/KeyboardShortcuts.md @@ -0,0 +1,10 @@ +Keyboard shortcuts in Friendica +======================= + +* [Home](help) + +General +------- + +* j: Scroll to next thread +* k: Scroll to previous thread diff --git a/js/main.js b/js/main.js index 98c219d78c..c85aab4a27 100644 --- a/js/main.js +++ b/js/main.js @@ -322,6 +322,7 @@ } }); + // Scroll to the next/previous thread when pressing J and K $(document).keydown(function (event) { var threads = $('.thread_level_1'); if ((event.keyCode === 74 || event.keyCode === 75) && !$(event.target).is('textarea, input')) {