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.
		
		
		
		
		
			
		
			
				
	
	
		
			24 lines
		
	
	
		
			611 B
		
	
	
	
		
			JavaScript
		
	
			
		
		
	
	
			24 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()
 | 
						|
                };
 | 
						|
            }
 | 
						|
        })
 | 
						|
    });
 | 
						|
})();
 |