summaryrefslogtreecommitdiff
path: root/js/app.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2020-04-22 06:52:23 +0300
committerAndrew Dolgov <[email protected]>2020-04-22 06:52:23 +0300
commit2295bd1fccc31cc7b21400f1517e5a6cac5b5d14 (patch)
tree48ec63d13b1fbf819d5c47968c4557eaff6b1d3a /js/app.js
parent8294f925aa8335a8eef496340acd6047926c3b4b (diff)
app: use manual night mode switch for index for the time being; pass theme bg color to app
Diffstat (limited to 'js/app.js')
-rw-r--r--js/app.js6
1 files changed, 2 insertions, 4 deletions
diff --git a/js/app.js b/js/app.js
index 5c55fb3..25e3ce2 100644
--- a/js/app.js
+++ b/js/app.js
@@ -215,10 +215,8 @@ const App = {
},
initNightMode: function() {
if (typeof EpubeApp != "undefined") {
- if (!EpubeApp.isAutoNightModeSupported()) {
- App.applyNightMode(EpubeApp.isNightMode());
- return;
- }
+ App.applyNightMode(EpubeApp.isNightMode());
+ return;
}
if (window.matchMedia) {