77caa63321
Typically, a view can specify its templateName and then use the default render method on Whisper.View, except in some special cases like message view or message detail where other operations are performed during render. // FREEBIE
23 lines
611 B
JavaScript
23 lines
611 B
JavaScript
/*
|
|
* vim: ts=4:sw=4:expandtab
|
|
*/
|
|
(function () {
|
|
'use strict';
|
|
window.Whisper = window.Whisper || {};
|
|
|
|
Whisper.ContactListView = Whisper.ListView.extend({
|
|
tagName: 'div',
|
|
itemView: Whisper.View.extend({
|
|
tagName: 'div',
|
|
className: 'contact',
|
|
templateName: 'contact',
|
|
render_attributes: function() {
|
|
return {
|
|
title: this.model.getTitle(),
|
|
number: this.model.getNumber(),
|
|
avatar: this.model.getAvatar()
|
|
};
|
|
}
|
|
})
|
|
});
|
|
})();
|