|
|
@ -169,14 +169,15 @@ define([
|
|
|
|
markup.message = function (msg) {
|
|
|
|
markup.message = function (msg) {
|
|
|
|
if (msg.type !== 'MSG') { return; }
|
|
|
|
if (msg.type !== 'MSG') { return; }
|
|
|
|
var curvePublic = msg.author;
|
|
|
|
var curvePublic = msg.author;
|
|
|
|
var name = typeof msg.name !== "undefined" ? (msg.name || Messages.anonymous)
|
|
|
|
var name = typeof msg.name !== "undefined" ?
|
|
|
|
: contactsData[msg.author].displayName;
|
|
|
|
(msg.name || Messages.anonymous) :
|
|
|
|
|
|
|
|
contactsData[msg.author].displayName;
|
|
|
|
var d = msg.time ? new Date(msg.time) : undefined;
|
|
|
|
var d = msg.time ? new Date(msg.time) : undefined;
|
|
|
|
var day = d ? d.toLocaleDateString() : '';
|
|
|
|
var day = d ? d.toLocaleDateString() : '';
|
|
|
|
var hour = d ? d.toLocaleTimeString() : '';
|
|
|
|
var hour = d ? d.toLocaleTimeString() : '';
|
|
|
|
return h('div.cp-app-contacts-message', {
|
|
|
|
return h('div.cp-app-contacts-message', {
|
|
|
|
//title: time || '?',
|
|
|
|
//title: time || '?',
|
|
|
|
'data-user': curvePublic,
|
|
|
|
'data-user': curvePublic || name,
|
|
|
|
'data-day': day
|
|
|
|
'data-day': day
|
|
|
|
}, [
|
|
|
|
}, [
|
|
|
|
name? h('div.cp-app-contacts-sender', [
|
|
|
|
name? h('div.cp-app-contacts-sender', [
|
|
|
@ -550,8 +551,9 @@ define([
|
|
|
|
|
|
|
|
|
|
|
|
common.notify();
|
|
|
|
common.notify();
|
|
|
|
if (message.type === 'MSG') {
|
|
|
|
if (message.type === 'MSG') {
|
|
|
|
var name = typeof message.name !== "undefined" ? (message.name || Messages.anonymous)
|
|
|
|
var name = typeof message.name !== "undefined" ?
|
|
|
|
: contactsData[message.author].displayName;
|
|
|
|
(message.name || Messages.anonymous) :
|
|
|
|
|
|
|
|
contactsData[message.author].displayName;
|
|
|
|
common.notify({title: name, msg: message.text});
|
|
|
|
common.notify({title: name, msg: message.text});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
notifyToolbar();
|
|
|
|
notifyToolbar();
|
|
|
|