1
0
mirror of https://github.com/moparisthebest/kaiwa synced 2024-08-13 17:03:51 -04:00

merge with master

This commit is contained in:
karolinaszczur 2013-09-25 12:24:02 +02:00
commit 159bfdf3fc
4 changed files with 11 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@ -53,6 +53,15 @@ module.exports = HumanModel.define({
return this.name || this.jid; return this.name || this.jid;
} }
}, },
displayUnreadCount: {
deps: ['unreadCount'],
fn: function () {
if (this.unreadCount > 0) {
return this.unreadCount.toString();
}
return '';
}
},
formattedTZO: { formattedTZO: {
deps: ['timezoneOffset', 'displayName'], deps: ['timezoneOffset', 'displayName'],
fn: function () { fn: function () {

View File

@ -45,7 +45,6 @@ module.exports = HumanModel.define({
deps: ['created'], deps: ['created'],
fn: function () { fn: function () {
if (this.created) { if (this.created) {
console.log(this.created);
var month = this.created.getMonth(); var month = this.created.getMonth();
var day = this.created.getDate(); var day = this.created.getDate();
var hour = this.created.getHours(); var hour = this.created.getHours();

View File

@ -18,7 +18,7 @@ module.exports = HumanView.extend({
textBindings: { textBindings: {
displayName: '.name', displayName: '.name',
status: '.status', status: '.status',
unreadCount: '.unread' displayUnreadCount: '.unread'
}, },
srcBindings: { srcBindings: {
avatar: '.avatar' avatar: '.avatar'