summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2019-07-30 07:23:00 +0300
committerAndrew Dolgov <[email protected]>2019-07-30 07:23:00 +0300
commiteac72e41b271677b4f3c37182f3cc00dbf947f44 (patch)
treed3ba8db3cd1e011a63f0ab688323b478de45d4a7 /js
parent8c79c715bc91ad2937857b4bdb5d772cedd014b1 (diff)
only show book title in header
Diffstat (limited to 'js')
-rw-r--r--js/read.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/read.js b/js/read.js
index 2ec2370..0c614c6 100644
--- a/js/read.js
+++ b/js/read.js
@@ -469,7 +469,7 @@ function init_reader() {
const meta = book.package.metadata;
document.title = meta.title + " – " + meta.creator + " – The Epube";
- $(".title").html("<b>" + meta.title + "</b> – " + meta.creator);
+ $(".title").html("<b>" + meta.title + "</b>"); // + " – " + meta.creator);
return localforage.getItem(cacheId("locations")).then(function(locations) {