Merge pull request #44 from nils-werner/fix-weird-file

Fix weird file
This commit is contained in:
sebu77 2015-09-08 19:02:36 +02:00
commit f58c2b7dd6
1 changed files with 0 additions and 24 deletions

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;
}
});