Fix an issue that space key doesn't work intentionally when inverting reading direction
This commit is contained in:
parent
c0a4addf30
commit
0138294b36
|
@ -532,11 +532,11 @@ function keyHandler(evt) {
|
||||||
if (evt.shiftKey && atTop) {
|
if (evt.shiftKey && atTop) {
|
||||||
evt.preventDefault();
|
evt.preventDefault();
|
||||||
// If it's Shift + Space and the container is at the top of the page
|
// If it's Shift + Space and the container is at the top of the page
|
||||||
showLeftPage();
|
showPrevPage();
|
||||||
} else if (!evt.shiftKey && atBottom) {
|
} else if (!evt.shiftKey && atBottom) {
|
||||||
evt.preventDefault();
|
evt.preventDefault();
|
||||||
// If you're at the bottom of the page and you only pressed space
|
// If you're at the bottom of the page and you only pressed space
|
||||||
showRightPage();
|
showNextPage();
|
||||||
container.scrollTop(0);
|
container.scrollTop(0);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user