|  |  | @ -352,19 +352,26 @@ | 
			
		
	
		
		
			
				
					
					|  |  |  |         } |  |  |  |         } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |         var title = this.get('name'); |  |  |  |         var title = this.get('name'); | 
			
		
	
		
		
			
				
					
					|  |  |  |         var color = '#999999'; |  |  |  |         var color; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  |         if (this.isPrivate() && title) { |  |  |  |         if (this.isPrivate()) { | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  |             color = COLORS[Math.abs(this.hashCode()) % 15]; |  |  |  |             if (title) { | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |                 color = COLORS[Math.abs(this.hashCode()) % 15]; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |             } else { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |                 color = '#999999'; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |             } | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |         } else { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |             color = '#2090ea'; | 
			
		
	
		
		
			
				
					
					|  |  |  |         } |  |  |  |         } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |         if (this.avatarUrl) { |  |  |  |         if (this.avatarUrl) { | 
			
		
	
		
		
			
				
					
					|  |  |  |             return { url: this.avatarUrl, color: color }; |  |  |  |             return { url: this.avatarUrl, color: color }; | 
			
		
	
		
		
			
				
					
					|  |  |  |         } else if (this.isPrivate()) { |  |  |  |         } else if (this.isPrivate()) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |             var content; | 
			
		
	
		
		
			
				
					
					|  |  |  |             if (!title) { |  |  |  |             if (!title) { | 
			
		
	
		
		
			
				
					
					|  |  |  |                 return { content: '#', color: color }; |  |  |  |                 content = '#'; | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  |             } |  |  |  |             } | 
			
		
	
		
		
			
				
					
					|  |  |  |             var initials = title.trim()[0]; |  |  |  |             var content = title.trim()[0]; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  |             return { content: initials, color: color }; |  |  |  |             return { content: content, color: color }; | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  |         } else { |  |  |  |         } else { | 
			
		
	
		
		
			
				
					
					|  |  |  |             return { url: '/images/group_default.png', color: color }; |  |  |  |             return { url: '/images/group_default.png', color: color }; | 
			
		
	
		
		
			
				
					
					|  |  |  |         } |  |  |  |         } | 
			
		
	
	
		
		
			
				
					|  |  | 
 |