From 20e507b29ead95c047c1166657d89cae13e304fd Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 24 May 2017 12:22:16 +0300 Subject: remove _store_position --- read.html | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'read.html') diff --git a/read.html b/read.html index 365a64a..5243f55 100644 --- a/read.html +++ b/read.html @@ -542,6 +542,7 @@ }); rendered.then(function() { + _last_position_sync = new Date().getTime()/1000; localforage.getItem(cacheId("pagination")).then(function(pageList) { @@ -640,7 +641,7 @@ $("#page_pct").html(pct + "%"); } - if (_store_position && new Date().getTime()/1000 - _last_position_sync > 15) { + if (new Date().getTime()/1000 - _last_position_sync > 15) { console.log("storing lastread"); var currentCfi = book.getCurrentLocationCfi(); @@ -658,8 +659,6 @@ }); - _store_position = 0; - } else { _last_position_sync = 0; } -- cgit v1.2.3