2 * This file is part of WolneLektury-Mobile, licensed under GNU Affero GPLv3 or later.
3 * Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
6 var Menu = new function() {
8 var infoView = "ProjectInfo";
10 self.init = function() {
11 window.MenuInterface.setNightMode(View.getNightMode());
14 self.start = function() {
18 self.info = function() {
19 History.visit(self.infoView + '/' + View.currentPar);
22 self.bookmark = function() {
23 var name = prompt('Nazwa zakładki');
25 History.addBookmark(name);
28 self.toggleNightMode = function() {
29 View.toggleNightMode();
30 window.MenuInterface.setNightMode(View.getNightMode());
33 self.setInfoButton = function(view, label, enabled) {
35 window.MenuInterface.setInfoButton(label, enabled);