f764445c86
We only use GPLV3 around here. // FREEBIE
23 lines
628 B
JavaScript
23 lines
628 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',
|
|
template: Whisper.View.Templates.contact,
|
|
render_attributes: function() {
|
|
return {
|
|
title: this.model.getTitle(),
|
|
number: this.model.getNumber(),
|
|
avatar: this.model.getAvatar()
|
|
};
|
|
}
|
|
})
|
|
});
|
|
})();
|