Skip to content

Commit

Permalink
fixup: Use local
Browse files Browse the repository at this point in the history
  • Loading branch information
AbeJellinek committed Sep 5, 2023
1 parent 3ab43c9 commit 0abaa87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dom/epub/flow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ export class PaginatedFlow extends AbstractFlow {
private _handleKeyDown = (event: KeyboardEvent) => {
let { key, shiftKey } = event;
// Left/right arrows are handled in EPUBView
if (!event.shiftKey) {
if (!shiftKey) {
if (key == 'ArrowUp') {
this.navigateToPreviousPage();
event.preventDefault();
Expand Down

0 comments on commit 0abaa87

Please sign in to comment.