summaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
Diffstat (limited to 'js')
-rw-r--r--js/items.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/js/items.js b/js/items.js
index 8a082f8ef..bd929d951 100644
--- a/js/items.js
+++ b/js/items.js
@@ -14,7 +14,6 @@
*/
var News = News || {};
-var t = t || function(app, string){ return string; }; // mock translation for local testing
(function(){
@@ -132,7 +131,7 @@ var t = t || function(app, string){ return string; }; // mock translation for lo
var notFound = true;
$('.feed_item').each(function(){
var visiblePx = Math.ceil($(this).position().top + $(this).outerHeight());
- if(notFound && visiblePx > 2){
+ if(notFound && visiblePx > 90){
$(this).addClass('viewed');
notFound = false;
}