summaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
Diffstat (limited to 'js')
-rw-r--r--js/items.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/items.js b/js/items.js
index e0a8b7570..cc09ac104 100644
--- a/js/items.js
+++ b/js/items.js
@@ -47,7 +47,7 @@ var t = t || function(app, string){ return string; }; // mock translation for lo
$(this).children('ul').children('.feed_item:not(.read)').each(function(){
var item = this;
var itemOffset = $(this).position().top;
- if(itemOffset <= 0 || scrolled >= scrollHeight){
+ if(itemOffset <= 0){
// wait and check if the item is still under the top edge
setTimeout(function(){ self._markItemAsReadTimeout(item);}, 1000);
}