summaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2012-08-15 02:20:57 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2012-08-15 02:20:57 +0200
commitcb38efda8df21c1e98e5fbf2e4b794c39a0c1e9a (patch)
tree3d702b513be6f6f83bfb35aec4360d105c8b5ae9 /js
parent648ae045230dc53689a2df9fc05155f526eb944b (diff)
fixed the shadow on the add folder/feed popup
Diffstat (limited to 'js')
-rw-r--r--js/news.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/js/news.js b/js/news.js
index df95479dc..8a82ceb0c 100644
--- a/js/news.js
+++ b/js/news.js
@@ -684,6 +684,7 @@ $(document).ready(function(){
var item = this;
var itemOffset = $(this).position().top;
if(itemOffset <= 0 || scrolled >= scrollHeight){
+ // wait and check if the item is still under the top edge
setTimeout(function(){ markItemAsRead(scrollArea, item);}, 1000);
}
})
@@ -695,7 +696,7 @@ $(document).ready(function(){
});
/**
- * Marks an item as read
+ * Marks an item as read which is called by the timeout
* @param item the dom item
*/
function markItemAsRead(scrollArea, item){