diff --git a/comic_reader.js b/comic_reader.js index a4427c6..84a1f9b 100644 --- a/comic_reader.js +++ b/comic_reader.js @@ -221,7 +221,7 @@ function moveReader(to_next, move_page) { IS_PAGE_MODE = true } - else if (CURRENT_PAGE > 1) { + else if (!to_next && CURRENT_PAGE > 1) { moveReaderDisplayToPage(CURRENT_PAGE - 1) IS_PAGE_MODE = true } @@ -266,7 +266,7 @@ function moveReader(to_next, move_page) { IS_PAGE_MODE = false } - else if (CURRENT_ZOOM > 0) { + else if (!to_next && CURRENT_ZOOM > 0) { moveReaderDisplayToZoom(CURRENT_ZOOM - 1) IS_PAGE_MODE = false }