summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2019-07-29 13:35:58 +0300
committerAndrew Dolgov <[email protected]>2019-07-29 13:35:58 +0300
commitd414aa5084a05d92209781a602efbf520ebf10e3 (patch)
treeca944978cf544973e23adca226c904fbba916c8e /js
parent240913c16f02b85e56e2b02a98f4cc0fbdb3d750 (diff)
fix issues with font-family with spaces; add caecilia
Diffstat (limited to 'js')
-rw-r--r--js/read.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/js/read.js b/js/read.js
index de75072..90e97fb 100644
--- a/js/read.js
+++ b/js/read.js
@@ -214,7 +214,7 @@ function init_reader() {
rendition.themes.default({
html: {
'font-size': fontSize,
- 'font-family': fontFamily,
+ 'font-family': "'" + fontFamily + "'",
'line-height': lineHeight,
'text-align': 'justify'
}
@@ -865,9 +865,11 @@ function apply_styles() {
const lineHeight = res[2] ? res[2] + "%" : DEFAULT_LINE_HEIGHT + "%";
//const themeName = res[3] ? res[3] : false;
+ console.log('style', fontFamily, fontSize, lineHeight);
+
$.each(window.book.rendition.getContents(), function(i, c) {
c.css("font-size", fontSize);
- c.css("font-family", fontFamily);
+ c.css("font-family", "'" + fontFamily + "'");
c.css("line-height", lineHeight);
});