Doc about j/k keyboard shortcuts

This commit is contained in:
Pierre Rudloff 2017-04-13 17:20:05 +02:00
부모 31f9b418ba
커밋 8567113f0f
2개의 변경된 파일11개의 추가작업 그리고 0개의 파일을 삭제

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) {
var threads = $('.thread_level_1');
if ((event.keyCode === 74 || event.keyCode === 75) && !$(event.target).is('textarea, input')) {