summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
Diffstat (limited to 'js')
-rw-r--r--js/read.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/js/read.js b/js/read.js
index b0b7cff..8d38ccd 100644
--- a/js/read.js
+++ b/js/read.js
@@ -267,9 +267,12 @@ function apply_theme() {
var baseUrl = window.location.href.match(/^.*\//)[0];
- if (!theme) theme = 'default';
+ if (!theme)
+ theme = 'default';
+ else
+ theme = theme.replace("/", "");
- var themeUrl = baseUrl + "/themes/" + theme + ".css";
+ var themeUrl = baseUrl + "themes/" + theme + ".css";
$("#theme_css").attr("href", themeUrl);
$(book.renderer.doc).find("#theme_css").attr('href', themeUrl);