X-Git-Url: https://git.mdrn.pl/wl-mobile.git/blobdiff_plain/34bb7f2c593c073ff871ed732bf16e298abe6837..ece057f255f997085854b36d6f858b97dad44546:/assets/www/js/main.js diff --git a/assets/www/js/main.js b/assets/www/js/main.js index 2daacf5..b4022d2 100644 --- a/assets/www/js/main.js +++ b/assets/www/js/main.js @@ -3,10 +3,13 @@ * Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. */ -var VERSION = '1.0'; var WL = 'http://www.wolnelektury.pl'; +// disable debugging +console.log = function(text) {}; + + function onLoad() { console.log('onLoad'); document.addEventListener("deviceready", onDeviceReady, false); @@ -58,4 +61,4 @@ var prettySize = function(size) { return Math.round(size*10)/10 + ' ' + unit; } return Math.round(size) + ' ' + unit; -} +};