Re-add file with correct capitalization

This commit is contained in:
Nils Werner 2015-07-10 09:56:48 +02:00
parent 4c2323d3fe
commit a4cc9408c5
1 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,29 @@
/*global $, app, me*/
"use strict";
var _ = require('underscore');
var HumanView = require('human-view');
var templates = require('../templates');
module.exports = HumanView.extend({
template: templates.includes.mucRosterItem,
events: {
'click': 'handleClick'
},
classBindings: {
show: '',
chatState: '',
idle: ''
},
textBindings: {
mucDisplayName: '.name'
},
render: function () {
this.renderAndBind({contact: this.model});
return this;
},
handleClick: function (e) {
this.parent.trigger('rosterItemClicked', this.model.mucDisplayName);
}
});