Merge pull request #787 from pafcu/mainjsfix

Only call autotime() on the correct elements
This commit is contained in:
RedMatrix
2014-12-30 08:57:08 +11:00

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;