turn off debugging
[wl-mobile.git] / assets / www / js / main.js
index 23eba54..00d8b29 100644 (file)
@@ -1,7 +1,16 @@
+/*
+ * This file is part of WolneLektury-Mobile, licensed under GNU Affero GPLv3 or later.
+ * 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);
@@ -53,4 +62,4 @@ var prettySize = function(size) {
         return Math.round(size*10)/10 + ' ' + unit;
     }
     return Math.round(size) + ' ' + unit;
-}
+};