mirror of
https://github.com/zulip/zulip.git
synced 2025-11-10 00:46:03 +00:00
Show full date hovering over timestamp
(imported from commit 486cd85b4ec21ad8468ced207c541372f341c200)
This commit is contained in:
@@ -504,6 +504,7 @@ function add_message(index, zephyr) {
|
||||
var two_digits = function (x) { return ('0' + x).slice(-2); }
|
||||
zephyr.timestr = two_digits(time.getHours())
|
||||
+ ':' + two_digits(time.getMinutes());
|
||||
zephyr.full_date_str = time.toLocaleString();
|
||||
|
||||
var new_tr = $('<tr />').attr('id', zephyr.id).addClass('zephyr_row');
|
||||
$('#table').append(new_tr);
|
||||
|
||||
Reference in New Issue
Block a user