Browse Source

Display datetime when hovering the date in chat message, see #1020

pull/1025/head
Timothée Jaussoin 4 years ago
parent
commit
9f0516f874
  1. 5
      app/widgets/Chat/chat.js

5
app/widgets/Chat/chat.js

@ -967,6 +967,7 @@ var Chat = {
msg = document.createElement('div');
span = document.createElement('span');
span.className = 'info';
p = document.createElement('p');
reaction = reaction.cloneNode(true);
@ -1073,6 +1074,10 @@ var Chat = {
msg.appendChild(resourceSpan);
}
if (data.published) {
span.title = data.published;
}
if (data.card) {
bubble.querySelector('div.bubble').classList.add('file');
msg.appendChild(Chat.getCardHtml(data.card));

Loading…
Cancel
Save