add support for j/k - vi style navigation
This commit is contained in:
parent
31a370d149
commit
1dae72f23f
|
@ -468,6 +468,7 @@ function playpen_text(playpen) {
|
|||
|
||||
switch (e.key) {
|
||||
case 'ArrowRight':
|
||||
case 'j':
|
||||
e.preventDefault();
|
||||
var nextButton = document.querySelector('.nav-chapters.next');
|
||||
if (nextButton) {
|
||||
|
@ -475,6 +476,7 @@ function playpen_text(playpen) {
|
|||
}
|
||||
break;
|
||||
case 'ArrowLeft':
|
||||
case 'k':
|
||||
e.preventDefault();
|
||||
var previousButton = document.querySelector('.nav-chapters.previous');
|
||||
if (previousButton) {
|
||||
|
|
Loading…
Reference in New Issue