Skip to content

Commit

Permalink
Add date tooltip to timestamps
Browse files Browse the repository at this point in the history
  • Loading branch information
ara4n committed Apr 28, 2017
1 parent 4eb0ca6 commit 67efb8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/views/messages/MessageTimestamp.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ module.exports = React.createClass({
render: function() {
var date = new Date(this.props.ts);
return (
<span className="mx_MessageTimestamp">
<span className="mx_MessageTimestamp" title={ DateUtils.formatDate(date) }>
{ DateUtils.formatTime(date) }
</span>
);
Expand Down

0 comments on commit 67efb8b

Please sign in to comment.