summaryrefslogtreecommitdiffstats
path: root/web/react/components/rhs_root_post.jsx
diff options
context:
space:
mode:
authorhmhealey <harrisonmhealey@gmail.com>2015-09-19 09:18:27 -0400
committerhmhealey <harrisonmhealey@gmail.com>2015-09-19 09:18:27 -0400
commitcfc919d111f5afebc978dd191b0ec45daf078912 (patch)
treebdca36679948f74d8ba4a8e0c4ac28d75f5ae5ac /web/react/components/rhs_root_post.jsx
parent06f8b8bfb4bd6f70a2e68964052ec20adfc82f51 (diff)
downloadchat-cfc919d111f5afebc978dd191b0ec45daf078912.tar.gz
chat-cfc919d111f5afebc978dd191b0ec45daf078912.tar.bz2
chat-cfc919d111f5afebc978dd191b0ec45daf078912.zip
Added a tooltip to post timestamps displaying the actual time the post was created
Diffstat (limited to 'web/react/components/rhs_root_post.jsx')
-rw-r--r--web/react/components/rhs_root_post.jsx9
1 files changed, 8 insertions, 1 deletions
diff --git a/web/react/components/rhs_root_post.jsx b/web/react/components/rhs_root_post.jsx
index 85755a85c..4ed97d00a 100644
--- a/web/react/components/rhs_root_post.jsx
+++ b/web/react/components/rhs_root_post.jsx
@@ -132,7 +132,14 @@ export default class RhsRootPost extends React.Component {
<div className='post__content'>
<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-right-root-time'>{utils.displayCommentDateTime(post.create_at)}</time></li>
+ <li className='post-header-col'>
+ <time
+ className='post-profile-time'
+ title={new Date(post.create_at).toString()}
+ >
+ {utils.displayCommentDateTime(post.create_at)}
+ </time>
+ </li>
<li className='post-header-col post-header__reply'>
<div className='dropdown'>
{ownerOptions}