mirror of
https://github.com/moparisthebest/kaiwa
synced 2024-11-05 17:15:04 -05:00
b5f3041e42
-Auto-join persistent rooms -Update MUCs list every 30 secs -Server params in the config file
25 lines
511 B
JavaScript
25 lines
511 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.mucRosterItem,
|
|
classBindings: {
|
|
show: '',
|
|
chatState: '',
|
|
idle: '',
|
|
persistent: ''
|
|
},
|
|
textBindings: {
|
|
mucDisplayName: '.name'
|
|
},
|
|
render: function () {
|
|
this.renderAndBind({contact: this.model});
|
|
return this;
|
|
}
|
|
});
|