From 1994ed155e125597a6f4b7975475a4399322b144 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 30 Jul 2019 13:05:43 +0300 Subject: add sepia theme --- js/read.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'js') diff --git a/js/read.js b/js/read.js index bd7d8af..58605ec 100644 --- a/js/read.js +++ b/js/read.js @@ -24,7 +24,7 @@ function init_loader() { "css/transitions.css", "js/reader.js", "css/reader.css", "js/dict.js", "themes/default.css", "themes/mocca.css", "themes/night.css", - "themes/plan9.css", "themes/gray.css" ]; + "themes/plan9.css", "themes/gray.css", "themes/sepia.css" ]; for (let i = 0; i < res_names.length; i++) { fetch(res_names[i], {credentials: 'same-origin'}).then(function(resp) { @@ -954,6 +954,12 @@ function apply_theme() { if (!theme) theme = 'default'; const theme_url = base_url + "themes/" + theme + ".css"; + const theme_data = _res_data[theme_url]; + + if (!theme_data) { + console.error('theme data not found for', theme, '- check resource loader configuration'); + return; + } $("#theme_css").attr("href", theme_url); -- cgit v1.2.3