kaiwa/clientapp/views/mucListItem.js

30 lines
655 B
JavaScript

/*global $, app, me*/
"use strict";
var _ = require('underscore');
var HumanView = require('human-view');
var templates = require('../templates');
module.exports = HumanView.extend({
template: templates.includes.mucListItem,
classBindings: {
activeContact: '',
hasUnread: ''
},
textBindings: {
displayName: '.name',
displayUnreadCount: '.unread'
},
events: {
'click': 'handleClick'
},
render: function () {
this.renderAndBind({contact: this.model});
return this;
},
handleClick: function () {
app.navigate('groupchat/' + this.model.jid);
}
});