Only call autotime() on the correct elements

This commit is contained in:
Stefan Parviainen 2014-12-29 20:02:56 +01:00
parent 0b79445b57
commit 345943d48f

View file

@ -468,7 +468,7 @@ function updateConvItems(mode,data) {
$('#' + prev).after($(this)); $('#' + prev).after($(this));
if(isVisible) if(isVisible)
showHideComments(itmId); showHideComments(itmId);
$(".autotime").timeago(); $(".autotime",this).timeago();
} }
else { else {
$('img',this).each(function() { $('img',this).each(function() {
@ -479,7 +479,7 @@ function updateConvItems(mode,data) {
$('#' + ident).replaceWith($(this)); $('#' + ident).replaceWith($(this));
if(isVisible) if(isVisible)
showHideComments(itmId); showHideComments(itmId);
$(".autotime").timeago(); $(".autotime",this).timeago();
} }
prev = ident; prev = ident;
}); });
@ -510,7 +510,7 @@ function updateConvItems(mode,data) {
$('#threads-end').before($(this)); $('#threads-end').before($(this));
if(isVisible) if(isVisible)
showHideComments(itmId); showHideComments(itmId);
$(".autotime").timeago(); $(".autotime",this).timeago();
} }
else { else {
$('img',this).each(function() { $('img',this).each(function() {
@ -521,7 +521,7 @@ function updateConvItems(mode,data) {
$('#' + ident).replaceWith($(this)); $('#' + ident).replaceWith($(this));
if(isVisible) if(isVisible)
showHideComments(itmId); showHideComments(itmId);
$(".autotime").timeago(); $(".autotime",this).timeago();
} }
}); });
@ -555,7 +555,7 @@ function updateConvItems(mode,data) {
$('#' + prev).after($(this)); $('#' + prev).after($(this));
if(isVisible) if(isVisible)
showHideComments(itmId); showHideComments(itmId);
$(".autotime").timeago(); $(".autotime",this).timeago();
} }
prev = ident; prev = ident;