1
0
mirror of https://github.com/moparisthebest/kaiwa synced 2024-11-12 12:35:00 -05:00
kaiwa/clientapp/views/contactListItem.js
2013-09-03 19:18:31 -07:00

34 lines
701 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.contactListItem,
classBindings: {
show: '',
subscription: '',
chatState: ''
},
textBindings: {
displayName: '.name',
status: '.status'
},
srcBindings: {
avatar: '.avatar'
},
events: {
'click': 'goChat'
},
render: function () {
this.renderAndBind({contact: this.model});
return this;
},
goChat: function () {
app.navigate('chat/' + this.model.jid);
}
});