You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
768 B
JavaScript
28 lines
768 B
JavaScript
/*
|
|
* vim: ts=4:sw=4:expandtab
|
|
*/
|
|
(function () {
|
|
'use strict';
|
|
window.Whisper = window.Whisper || {};
|
|
|
|
Whisper.GroupMemberList = Whisper.View.extend({
|
|
className: 'group-member-list',
|
|
template: $('#group-member-list').html(),
|
|
initialize: function() {
|
|
this.render();
|
|
this.member_list_view = new Whisper.ContactListView({
|
|
collection: this.model.contactCollection,
|
|
className: 'members'
|
|
});
|
|
this.member_list_view.render();
|
|
this.$('.scrollable').append(this.member_list_view.el);
|
|
},
|
|
events: {
|
|
'click .back': 'goBack',
|
|
},
|
|
goBack: function() {
|
|
this.trigger('back');
|
|
},
|
|
});
|
|
})();
|