mirror of
				https://github.com/pierre42100/ComunicWeb
				synced 2025-11-04 04:04:20 +00:00 
			
		
		
		
	Friendbar show latest login of users
This commit is contained in:
		@@ -116,8 +116,6 @@ ComunicWeb.components.friends.bar = {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
					//Add user login status
 | 
										//Add user login status
 | 
				
			||||||
					var statusRow = createElem("td", friendRow);					
 | 
										var statusRow = createElem("td", friendRow);					
 | 
				
			||||||
					var iconsStats = createElem("i", statusRow);
 | 
					 | 
				
			||||||
					iconsStats.className = "fa fa-fw fa-circle";
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
					//Check if user is online or not
 | 
										//Check if user is online or not
 | 
				
			||||||
					var currentTime = ComunicWeb.common.date.time();
 | 
										var currentTime = ComunicWeb.common.date.time();
 | 
				
			||||||
@@ -125,11 +123,14 @@ ComunicWeb.components.friends.bar = {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
					if(timeDifference < 30){
 | 
										if(timeDifference < 30){
 | 
				
			||||||
						//User is logged in
 | 
											//User is logged in
 | 
				
			||||||
 | 
											var iconsStats = createElem("i", statusRow);
 | 
				
			||||||
 | 
											iconsStats.className = "fa fa-fw fa-circle";
 | 
				
			||||||
						iconsStats.style.color = "green";
 | 
											iconsStats.style.color = "green";
 | 
				
			||||||
					}
 | 
										}
 | 
				
			||||||
					else {
 | 
										else {
 | 
				
			||||||
						//User isn't logged in
 | 
											//User isn't logged in
 | 
				
			||||||
						statusRow.innerHTML = ComunicWeb.common.date.diffToStr();
 | 
											var logoutTime = createElem("small", statusRow);
 | 
				
			||||||
 | 
											logoutTime.innerHTML = ComunicWeb.common.date.diffToStr(timeDifference);
 | 
				
			||||||
					}
 | 
										}
 | 
				
			||||||
				}
 | 
									}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user