aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
Diffstat (limited to 'view')
-rw-r--r--view/head.tpl5
1 files changed, 4 insertions, 1 deletions
diff --git a/view/head.tpl b/view/head.tpl
index f6ded0b32..f522f54b8 100644
--- a/view/head.tpl
+++ b/view/head.tpl
@@ -63,7 +63,10 @@
if($('#' + ident).length == 0) {
$('#' + prev).after($(this));
}
- else { $('#' + ident).replaceWith($(this)); }
+ else {
+ $('#' + ident + ' ' + '.wall-item-ago').replaceWith($(this).find('.wall-item-ago'));
+ $('#' + ident + ' ' + '.wall-item-comment-wrapper').replaceWith($(this).find('.wall-item-comment-wrapper'));
+ }
prev = ident;
});
});