mirror of
https://github.com/moparisthebest/kaiwa
synced 2024-11-12 12:35:00 -05:00
30 lines
655 B
JavaScript
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);
|
|
}
|
|
});
|