diff --git a/following.html b/following.html index 12f5462..f5f6a25 100644 --- a/following.html +++ b/following.html @@ -219,7 +219,7 @@
@@ -263,8 +263,7 @@ @@ -352,7 +351,7 @@ @@ -367,7 +366,7 @@ diff --git a/home.html b/home.html index 82dd73e..1d4e27f 100644 --- a/home.html +++ b/home.html @@ -310,8 +310,7 @@ @@ -355,7 +354,7 @@ @@ -444,7 +443,7 @@ @@ -459,8 +458,7 @@ diff --git a/js/twister_formatpost.js b/js/twister_formatpost.js index d908a39..3aa20a9 100644 --- a/js/twister_formatpost.js +++ b/js/twister_formatpost.js @@ -44,7 +44,11 @@ function postToElem(post, kind, promoted) { //elem.find('.post-info-tag').text("@" + username); // FIXME getAvatar(username, elem.find('.avatar')); - elem.find('.post-info-time').text(timeGmtToText(time)).attr('title', timeSincePost(time)); + elem.find('.post-info-time') + .attr('title', timeSincePost(time)) + .find('span:last') + .text(timeGmtToText(time)) + ; } /* @@ -253,7 +257,11 @@ function dmDataToSnippetItem(dmData, remoteUser) { else getFullname( remoteUser, dmItem.find("a.post-info-name") ); dmItem.find(".post-text").html(htmlFormatMsg(dmData.text).html); - dmItem.find(".post-info-time").text(timeGmtToText(dmData.time)).attr("title",timeSincePost(dmData.time)); + dmItem.find('.post-info-time') + .attr('title', timeSincePost(dmData.time)) + .find('span:last') + .text(timeGmtToText(dmData.time)) + ; return dmItem; } @@ -268,7 +276,11 @@ function dmDataToConversationItem(dmData, localUser, remoteUser) { dmItem.removeAttr('id'); dmItem.addClass(classDm); getAvatar(from, dmItem.find(".post-photo").find("img") ); - dmItem.find(".post-info-time").text(timeGmtToText(dmData.time)).attr("title",timeSincePost(dmData.time)); + dmItem.find('.post-info-time') + .attr('title', timeSincePost(dmData.time)) + .find('span:last') + .text(timeGmtToText(dmData.time)) + ; setPostInfoSent(from,dmData.k,dmItem.find('.post-info-sent')); dmItem.find('.post-text').html(htmlFormatMsg(dmData.text).html); diff --git a/tmobile.html b/tmobile.html index 45f9e7f..d9e6045 100644 --- a/tmobile.html +++ b/tmobile.html @@ -744,7 +744,7 @@