X-Git-Url: https://git.mdrn.pl/wl-mobile.git/blobdiff_plain/d947c00d92691df552a793f8d9c2991c931ad244..e02aa48b6f2b7ddca9b55c56288cd2512702da6d:/assets/www/js/main.js diff --git a/assets/www/js/main.js b/assets/www/js/main.js new file mode 100644 index 0000000..f3a1eee --- /dev/null +++ b/assets/www/js/main.js @@ -0,0 +1,66 @@ +/* + * This file is part of WolneLektury-Mobile, licensed under GNU Affero GPLv3 or later. + * Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. + */ + +var WL = 'http://www.wolnelektury.pl'; + + +// disable debugging +console.log = function(text) {}; + + +function onLoad() { + console.log('onLoad'); + document.addEventListener("deviceready", onDeviceReady, false); +} + +function onDeviceReady() { + console.log('onDeviceReady'); + var error = function(err) { alert(err); }; + + FileRepo.init(function() { + console.log('after FileRepo.init'); + Catalogue.init(function() { + console.log('after catalogue.init'); + History.init(function() { + console.log('after history.init'); + View.init(function() { + Menu.init(function() { + Catalogue.sync(function() { + Catalogue.updateLocal(); + }, error); + }, error); + }, error); + }, error); + }, error); + }); +} + + +var currentOffset = function() { + var scr = document.body.scrollTop; + var h = document.getElementById('nothing').offsetTop; + return scr/h;document.getElementById('nothing') +}; + +var setOffset = function(offset) { + var h = document.getElementById('nothing').offsetTop; + scroll(0, h*offset); +}; + + +var prettySize = function(size) { + if (!size) return ""; + var units = ['B', 'KiB', 'MiB', 'GiB']; + size = size; + var unit = units.shift(); + while (size > 1000 && units.length) { + size /= 1024; + unit = units.shift(); + } + if (size < 10) { + return Math.round(size*10)/10 + ' ' + unit; + } + return Math.round(size) + ' ' + unit; +};