night mode,
[wl-mobile.git] / assets / www / js / menu.js
index 2e383a1..9fea371 100644 (file)
@@ -1,8 +1,16 @@
+/*
+ * This file is part of WolneLektury-Mobile, licensed under GNU Affero GPLv3 or later.
+ * Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+ */
 
 var Menu = new function() {
        var self = this;
        var infoView = "ProjectInfo";
 
+       self.init = function() {
+               window.MenuInterface.setNightMode(View.getNightMode());
+       };
+
        self.start = function() {
                History.visit('');
        };
@@ -17,6 +25,11 @@ var Menu = new function() {
                        History.addBookmark(name);
        };
 
+       self.toggleNightMode = function() {
+               View.toggleNightMode();
+               window.MenuInterface.setNightMode(View.getNightMode());
+       };
+
        self.setInfoButton = function(view, label, enabled) {
                self.infoView = view;
                window.MenuInterface.setInfoButton(label, enabled);