Commit 0138294b authored by subdiox's avatar subdiox

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

parent c0a4addf
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment