From 491c7962e5616736814bfb8ef38bae285208a7e1 Mon Sep 17 00:00:00 2001 From: Bill Thornton Date: Fri, 20 Nov 2020 17:11:32 -0500 Subject: [PATCH] Fix mobile prev/next buttons for bookplayer --- src/plugins/bookPlayer/plugin.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(); }