b4022d2027fa4e511fd1a26579e3d4caa241d70b
[wl-mobile.git] / assets / www / js / main.js
1 /*
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.
4  */
5
6 var WL = 'http://www.wolnelektury.pl';
7
8
9 // disable debugging
10 console.log = function(text) {};
11
12
13 function onLoad() {
14         console.log('onLoad');
15         document.addEventListener("deviceready", onDeviceReady, false);
16 }
17
18 function onDeviceReady() {
19         console.log('onDeviceReady');
20         var error = function(err) { alert(err); };
21
22         FileRepo.init(function() {
23                 console.log('after FileRepo.init');
24                 Catalogue.init(function() {
25                         console.log('after catalogue.init');
26                         History.init(function() {
27                                 console.log('after history.init');
28                                 View.init(function() {
29                                         Catalogue.sync(function() {
30                                                 Catalogue.updateLocal();
31                                         }, error);
32                                 }, error);
33                         }, error);
34                 }, error);
35         });
36 }
37
38
39 var currentOffset = function() {
40         var scr = document.body.scrollTop;
41         var h = document.getElementById('nothing').offsetTop;
42         return scr/h;document.getElementById('nothing')
43 };
44
45 var setOffset = function(offset) {
46         var h = document.getElementById('nothing').offsetTop;
47         scroll(0, h*offset); 
48 };
49
50
51 var prettySize = function(size) {
52     if (!size) return "";
53     var units = ['B', 'KiB', 'MiB', 'GiB'];
54     size = size;
55     var unit = units.shift();
56     while (size > 1000 && units.length) {
57         size /= 1024;
58         unit = units.shift();
59     }
60     if (size < 10) {
61         return Math.round(size*10)/10 + ' ' + unit;
62     }
63     return Math.round(size) + ' ' + unit;
64 };