summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorhmhealey <harrisonmhealey@gmail.com>2015-09-24 11:25:36 -0400
committerhmhealey <harrisonmhealey@gmail.com>2015-09-24 11:25:36 -0400
commit32feec5b66d114fe8b30c745ba6d587a82ea6b23 (patch)
tree86baf6e39e24a3493a2f2bb745863b9b5e429ba8 /web
parentd5343f997d8d239f09a93a05d8affd8387bb46bc (diff)
downloadchat-32feec5b66d114fe8b30c745ba6d587a82ea6b23.tar.gz
chat-32feec5b66d114fe8b30c745ba6d587a82ea6b23.tar.bz2
chat-32feec5b66d114fe8b30c745ba6d587a82ea6b23.zip
Removed timestamp tooltips from posts in the RHS
Diffstat (limited to 'web')
-rw-r--r--web/react/components/rhs_comment.jsx5
-rw-r--r--web/react/components/rhs_root_post.jsx5
2 files changed, 2 insertions, 8 deletions
diff --git a/web/react/components/rhs_comment.jsx b/web/react/components/rhs_comment.jsx
index 4d1892a69..4432a6a26 100644
--- a/web/react/components/rhs_comment.jsx
+++ b/web/react/components/rhs_comment.jsx
@@ -186,10 +186,7 @@ export default class RhsComment extends React.Component {
<strong><UserProfile userId={post.user_id} /></strong>
</li>
<li className='post-header-col'>
- <time
- className='post-profile-time'
- title={new Date(post.create_at).toString()}
- >
+ <time className='post-profile-time'>
{Utils.displayCommentDateTime(post.create_at)}
</time>
</li>
diff --git a/web/react/components/rhs_root_post.jsx b/web/react/components/rhs_root_post.jsx
index e661bdce1..6289b9314 100644
--- a/web/react/components/rhs_root_post.jsx
+++ b/web/react/components/rhs_root_post.jsx
@@ -133,10 +133,7 @@ export default class RhsRootPost extends React.Component {
<ul className='post-header'>
<li className='post-header-col'><strong><UserProfile userId={post.user_id} /></strong></li>
<li className='post-header-col'>
- <time
- className='post-profile-time'
- title={new Date(post.create_at).toString()}
- >
+ <time className='post-profile-time'>
{utils.displayCommentDateTime(post.create_at)}
</time>
</li>