Make unread count default to '' instead of 0

This commit is contained in:
Lance Stout 2013-09-25 01:47:11 -07:00
parent e6a6446349
commit 109a3477d1
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;
}
},
displayUnreadCount: {
deps: ['unreadCount'],
fn: function () {
if (this.unreadCount > 0) {
return this.unreadCount.toString();
}
return '';
}
},
formattedTZO: {
deps: ['timezoneOffset', 'displayName'],
fn: function () {

View File

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

View File

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