1
0
mirror of https://github.com/janeczku/calibre-web synced 2025-11-14 06:07:10 +00:00

Fix #1115 (comic reader not working under iOS, maybe invalid issue)

Improvement for #925 (Next/Prev buttons are bigger)
This commit is contained in:
Ozzieisaacs
2019-12-22 15:24:22 +01:00
parent 7098d08888
commit b586a32843
6 changed files with 33 additions and 111 deletions

View File

@@ -1,12 +1,14 @@
/* global $, calibre, EPUBJS, ePubReader */
var reader;
(function() {
"use strict";
EPUBJS.filePath = calibre.filePath;
EPUBJS.cssPath = calibre.cssPath;
var reader = ePubReader(calibre.bookUrl, {
reader = ePubReader(calibre.bookUrl, {
restore: true,
bookmarks: calibre.bookmark ? [calibre.bookmark] : []
});