forked from NYPL-Simplified/webpub-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request NYPL-Simplified#27 from d-i-t-a/feature/vertical-p…
…aging Alternative behavior of nextPage(), previousPage() in scrolling mode
- Loading branch information
Showing
5 changed files
with
85 additions
and
26 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* | ||
* Project: R2D2BC - Web Reader | ||
* Developers: Aferdita Muriqi | ||
* Copyright (c) 2019. DITA. All rights reserved. | ||
* Developed on behalf of: Bokbasen AS (https://www.bokbasen.no) | ||
* Licensed to: Bokbasen AS and CAST under one or more contributor license agreements. | ||
* Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. | ||
*/ | ||
|
||
import BookView from "./BookView"; | ||
|
||
interface ContinuousBookView extends BookView { | ||
goToPreviousPage(): void; | ||
goToNextPage(): void; | ||
} | ||
export default ContinuousBookView; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters