Doc about j/k keyboard shortcuts
This commit is contained in:
parent
31f9b418ba
commit
8567113f0f
10
doc/KeyboardShortcuts.md
Normal file
10
doc/KeyboardShortcuts.md
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
Keyboard shortcuts in Friendica
|
||||||
|
=======================
|
||||||
|
|
||||||
|
* [Home](help)
|
||||||
|
|
||||||
|
General
|
||||||
|
-------
|
||||||
|
|
||||||
|
* j: Scroll to next thread
|
||||||
|
* k: Scroll to previous thread
|
|
@ -322,6 +322,7 @@
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Scroll to the next/previous thread when pressing J and K
|
||||||
$(document).keydown(function (event) {
|
$(document).keydown(function (event) {
|
||||||
var threads = $('.thread_level_1');
|
var threads = $('.thread_level_1');
|
||||||
if ((event.keyCode === 74 || event.keyCode === 75) && !$(event.target).is('textarea, input')) {
|
if ((event.keyCode === 74 || event.keyCode === 75) && !$(event.target).is('textarea, input')) {
|
||||||
|
|
Loading…
Reference in a new issue