diff --git a/src/plugins/bookPlayer/plugin.js b/src/plugins/bookPlayer/plugin.js index 7d7a8b89be..90732e9f98 100644 --- a/src/plugins/bookPlayer/plugin.js +++ b/src/plugins/bookPlayer/plugin.js @@ -180,12 +180,12 @@ export class BookPlayer { } prevChapter(e) { - this._rendition.prev(); + this.rendition.prev(); e.preventDefault(); } nextChapter(e) { - this._rendition.next(); + this.rendition.next(); e.preventDefault(); }