From 843845695fce9a066e19ae4a1e4285b12eaa8d95 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Mon, 3 Sep 2012 03:23:22 +0200 Subject: dont mark feeds as read when you hit the bottom because its not needed any more --- js/items.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'js') 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); } -- cgit v1.2.3