Doc about j/k keyboard shortcuts

Cette révision appartient à :
Pierre Rudloff 2017-04-13 17:20:05 +02:00
Parent 31f9b418ba
révision 8567113f0f
2 fichiers modifiés avec 11 ajouts et 0 suppressions

10
doc/KeyboardShortcuts.md Fichier normal
Voir le fichier

@ -0,0 +1,10 @@
Keyboard shortcuts in Friendica
=======================
* [Home](help)
General
-------
* j: Scroll to next thread
* k: Scroll to previous thread

Voir le fichier

@ -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')) {