Merge pull request #660 from thelounge/astorije/98-add-timestamp-title

Display localized timestamp in title of message times
This commit is contained in:
Pavel Djundik 2016-10-01 09:50:17 +03:00 committed by GitHub
commit cd90d50a37
4 changed files with 8 additions and 3 deletions

View File

@ -0,0 +1,5 @@
"use strict";
Handlebars.registerHelper("localetime", function(time) {
return new Date(time).toLocaleString();
});

View File

@ -1,5 +1,5 @@
<div class="msg {{type}}{{#if self}} self{{/if}}{{#if highlight}} highlight{{/if}}" id="msg-{{id}}">
<span class="time">
<span class="time" title="{{localetime time}}">
{{tz time}}
</span>
<span class="from">

View File

@ -1,5 +1,5 @@
<div class="msg {{type}}{{#if self}} self{{/if}}{{#if highlight}} highlight{{/if}}" id="msg-{{id}}">
<span class="time">
<span class="time" title="{{localetime time}}">
{{tz time}}
</span>
<span class="from"></span>

View File

@ -1,5 +1,5 @@
<div class="msg {{type}}{{#if self}} self{{/if}}{{#if highlight}} highlight{{/if}}">
<span class="time">
<span class="time" title="{{localetime time}}">
{{tz time}}
</span>
<span class="from">[{{command}}]</span>