diff options
author | friendica <info@friendica.com> | 2013-01-31 20:53:07 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-01-31 20:53:07 -0800 |
commit | 6b3d36c36d9a1c2da3e338ef7802c77b5fd82167 (patch) | |
tree | 2b89c126a64888f4a1f6492bbc995d64bc95ad8b /js/main.js | |
parent | 154ed4151a3f0394e6bdefb8650b5908ec916f62 (diff) | |
download | volse-hubzilla-6b3d36c36d9a1c2da3e338ef7802c77b5fd82167.tar.gz volse-hubzilla-6b3d36c36d9a1c2da3e338ef7802c77b5fd82167.tar.bz2 volse-hubzilla-6b3d36c36d9a1c2da3e338ef7802c77b5fd82167.zip |
when did the ago-time div get renamed? I don't remember doing that.
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 67b4c777e..458fc5e87 100644 --- a/js/main.js +++ b/js/main.js @@ -352,7 +352,7 @@ function updateConvItems(mode,data) { $(this).attr('src',$(this).attr('dst')); }); $('#' + prev).after($(this)); - $("div.wall-item-ago-time").timeago(); + $("div.wall-item-ago").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. @@ -364,7 +364,7 @@ function updateConvItems(mode,data) { $(this).attr('src',$(this).attr('dst')); }); $('#' + ident).replaceWith($(this)); - $("div.wall-item-ago-time").timeago(); + $("div.wall-item-ago").timeago(); // $("div.wall-item-body").divgrow({ initialHeight: 400 }); } @@ -381,7 +381,7 @@ function updateConvItems(mode,data) { $(this).attr('src',$(this).attr('dst')); }); $('#threads-end').before($(this)); - $("div.wall-item-ago-time").timeago(); + $("div.wall-item-ago").timeago(); // $("div.wall-item-body").divgrow({ initialHeight: 400 }); } @@ -390,7 +390,7 @@ function updateConvItems(mode,data) { $(this).attr('src',$(this).attr('dst')); }); $('#' + ident).replaceWith($(this)); - $("div.wall-item-ago-time").timeago(); + $("div.wall-item-ago").timeago(); // $("div.wall-item-body").divgrow({ initialHeight: 400 }); } }); @@ -409,7 +409,7 @@ function updateConvItems(mode,data) { $(this).attr('src',$(this).attr('dst')); }); $('#' + prev).after($(this)); - $("div.wall-item-ago-time").timeago(); + $("div.wall-item-ago").timeago(); // $("div.wall-item-body").divgrow({ initialHeight: 400 }); } @@ -899,7 +899,7 @@ jQuery.timeago.settings.strings = { }; -$("div.wall-item-ago-time").timeago(); +$("div.wall-item-ago").timeago(); //$("div.wall-item-body").divgrow({ initialHeight: 400 }); //reCalcHeight(); |