mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 09:49:28 +02:00
6 lines
238 B
JavaScript
6 lines
238 B
JavaScript
Object.values(response.users_id_online).forEach(element => {
|
|
if (!element || typeof element.users_id === 'undefined') return;
|
|
|
|
$('#caller' + element.users_id).show();
|
|
$('.users_id_' + element.users_id).addClass('online');
|
|
});
|