diff options
Diffstat (limited to 'js/main.js')
-rw-r--r-- | js/main.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/js/main.js b/js/main.js index df161e386..01aea6b22 100644 --- a/js/main.js +++ b/js/main.js @@ -353,7 +353,7 @@ function updateConvItems(mode,data) { $(this).attr('src',$(this).attr('dst')); }); $('#' + prev).after($(this)); - $("div.wall-item-ago").timeago(); + $(".autotime").timeago(); // divgrow doesn't prevent itself from attaching a second (or 500th) // "show more" div to a content region - it also has a few other // issues related to how we're trying to use it. @@ -365,7 +365,7 @@ function updateConvItems(mode,data) { $(this).attr('src',$(this).attr('dst')); }); $('#' + ident).replaceWith($(this)); - $("div.wall-item-ago").timeago(); + $(".autotime").timeago(); // $("div.wall-item-body").divgrow({ initialHeight: 400 }); } @@ -382,7 +382,7 @@ function updateConvItems(mode,data) { $(this).attr('src',$(this).attr('dst')); }); $('#threads-end').before($(this)); - $("div.wall-item-ago").timeago(); + $(".autotime").timeago(); // $("div.wall-item-body").divgrow({ initialHeight: 400 }); } @@ -391,7 +391,7 @@ function updateConvItems(mode,data) { $(this).attr('src',$(this).attr('dst')); }); $('#' + ident).replaceWith($(this)); - $("div.wall-item-ago").timeago(); + $(".autotime").timeago(); // $("div.wall-item-body").divgrow({ initialHeight: 400 }); } }); @@ -410,7 +410,7 @@ function updateConvItems(mode,data) { $(this).attr('src',$(this).attr('dst')); }); $('#' + prev).after($(this)); - $("div.wall-item-ago").timeago(); + $(".autotime").timeago(); // $("div.wall-item-body").divgrow({ initialHeight: 400 }); } @@ -893,7 +893,7 @@ jQuery.timeago.settings.strings = { }; -$("div.wall-item-ago").timeago(); +$(".autotime").timeago(); //$("div.wall-item-body").divgrow({ initialHeight: 400 }); //reCalcHeight(); |