Added a tooltip to post timestamps displaying the actual time the post was created

Этот коммит содержится в:
hmhealey
2015-09-19 09:18:27 -04:00
родитель 06f8b8bfb4
Коммит cfc919d111
3 изменённых файлов: 16 добавлений и 3 удалений

Просмотреть файл

@@ -193,7 +193,10 @@ export default class RhsComment extends React.Component {
<strong><UserProfile userId={post.user_id} /></strong>
</li>
<li className='post-header-col'>
<time className='post-right-comment-time'>
<time
className='post-profile-time'
title={new Date(post.create_at).toString()}
>
{Utils.displayCommentDateTime(post.create_at)}
</time>
</li>