Delete both capitalizations

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

View File

@ -1,29 +0,0 @@
/*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);
}
});

View File

@ -1,24 +0,0 @@
/*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,
classBindings: {
show: '',
chatState: '',
idle: '',
persistent: ''
},
textBindings: {
mucDisplayName: '.name'
},
render: function () {
this.renderAndBind({contact: this.model});
return this;
}
});