This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
friendica
/
friendica
mirror of
https://github.com/friendica/friendica.git
Watch
1
Star
2
Fork
1
Code
Issues
Releases
49
Wiki
Activity
Browse Source
Doc about j/k keyboard shortcuts
pull/3330/head
Pierre Rudloff
3 years ago
parent
31f9b418ba
commit
8567113f0f
2 changed files
with
11 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+10
-0
doc/KeyboardShortcuts.md
+1
-0
js/main.js
+ 10
- 0
doc/KeyboardShortcuts.md
View File
@ -0,0 +1,10 @@
Keyboard shortcuts in Friendica
=======================
* [
Home
](
help
)
General
-------
* j: Scroll to next thread
* k: Scroll to previous thread
+ 1
- 0
js/main.js
View File
@ -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'
)
)
{
Write
Preview
Loading…
Cancel
Save