X-Git-Url: https://git.mdrn.pl/wl-mobile.git/blobdiff_plain/8b7b42d45674861437a31e9f9125a277ce998721..065d23f9494e1afb7f61ada08b728405b1b7a0cf:/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..23eba54 --- /dev/null +++ b/assets/www/js/main.js @@ -0,0 +1,56 @@ +var VERSION = '1.0'; +var WL = 'http://www.wolnelektury.pl'; + + +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() { + Catalogue.sync(function() { + Catalogue.updateLocal(); + }, 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; +}