diff options
author | redmatrix <git@macgirvin.com> | 2016-04-10 21:30:35 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-04-10 21:30:35 -0700 |
commit | 5cb3143c0448834f7bd164320bec15ef2a030c52 (patch) | |
tree | 406b3f23134afbaa81bed4548257dc71847124d8 /view/js | |
parent | d1a2aecfa05927b79350500b7c0f9d9b978afbeb (diff) | |
download | volse-hubzilla-5cb3143c0448834f7bd164320bec15ef2a030c52.tar.gz volse-hubzilla-5cb3143c0448834f7bd164320bec15ef2a030c52.tar.bz2 volse-hubzilla-5cb3143c0448834f7bd164320bec15ef2a030c52.zip |
issue #331 use timeago.js for reshared publish date instead of relative_date() which does not play well with other networks.
Diffstat (limited to 'view/js')
-rw-r--r-- | view/js/main.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/view/js/main.js b/view/js/main.js index ba476b576..799ae82bc 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -491,6 +491,7 @@ function updateConvItems(mode,data) { if(isVisible) showHideComments(itmId); $("> .wall-item-outside-wrapper .autotime, > .thread-wrapper .autotime",this).timeago(); + $("> .shared_header .autotime",this).timeago(); } else { $('img',this).each(function() { @@ -502,6 +503,7 @@ function updateConvItems(mode,data) { if(isVisible) showHideComments(itmId); $("> .wall-item-outside-wrapper .autotime, > .thread-wrapper .autotime",this).timeago(); + $("> .shared_header .autotime",this).timeago(); } prev = ident; }); @@ -529,6 +531,7 @@ function updateConvItems(mode,data) { if(isVisible) showHideComments(itmId); $("> .wall-item-outside-wrapper .autotime, > .thread-wrapper .autotime",this).timeago(); + $("> .shared_header .autotime",this).timeago(); } else { $('img',this).each(function() { @@ -540,6 +543,7 @@ function updateConvItems(mode,data) { if(isVisible) showHideComments(itmId); $("> .wall-item-outside-wrapper .autotime, > .thread-wrapper .autotime",this).timeago(); + $("> .shared_header .autotime",this).timeago(); } }); @@ -573,6 +577,7 @@ function updateConvItems(mode,data) { if(isVisible) showHideComments(itmId); $("> .wall-item-outside-wrapper .autotime, > .thread-wrapper .autotime",this).timeago(); + $("> .shared_header .autotime",this).timeago(); } prev = ident; }); @@ -1048,6 +1053,7 @@ function preview_comment(id) { function(data) { if(data.preview) { $("#comment-edit-preview-" + id).html(data.preview); + $("#comment-edit-preview-" + id + " .autotime").timeago(); $("#comment-edit-preview-" + id + " a").click(function() { return false; }); } }, @@ -1078,6 +1084,7 @@ function preview_post() { function(data) { if(data.preview) { $("#jot-preview-content").html(data.preview); + $("#jot-preview-content .autotime").timeago(); $("#jot-preview-content" + " a").click(function() { return false; }); } }, |