fix reader
[wolnelektury.git] / src / wolnelektury / static / js / book_text / progress.js
index 8175de6..d57a32f 100644 (file)
@@ -15,7 +15,6 @@
         textlen = textbottom - texttop;
         progress = (window.scrollY - texttop) / textlen;
         progress = Math.max(0, Math.min(progress, 1))
-        console.log('SCROLL BODY', progress);
 
         $('#global-progress .filled').css('right', (1 - progress) * 100 + '%');
         tleft = Math.round((1 - progress) * t / 60);