Fix an issue that space key doesn't work intentionally when inverting reading direction

This commit is contained in:
subdiox 2021-04-18 03:20:41 +09:00
parent c0a4addf30
commit 0138294b36
1 changed files with 2 additions and 2 deletions

View File

@ -532,11 +532,11 @@ function keyHandler(evt) {
if (evt.shiftKey && atTop) {
evt.preventDefault();
// If it's Shift + Space and the container is at the top of the page
showLeftPage();
showPrevPage();
} else if (!evt.shiftKey && atBottom) {
evt.preventDefault();
// If you're at the bottom of the page and you only pressed space
showRightPage();
showNextPage();
container.scrollTop(0);
}
break;