|
|
|
|
@ -2362,6 +2362,29 @@ class RoomClient {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ####################################################
|
|
|
|
|
// SEARCH PEER FILTER
|
|
|
|
|
// ####################################################
|
|
|
|
|
|
|
|
|
|
searchPeer() {
|
|
|
|
|
let input, filter, table, tr, td, i, txtValue;
|
|
|
|
|
input = this.getId('searchParticipants');
|
|
|
|
|
filter = input.value.toUpperCase();
|
|
|
|
|
table = this.getId('myTable');
|
|
|
|
|
tr = table.getElementsByTagName('tr');
|
|
|
|
|
for (i = 0; i < tr.length; i++) {
|
|
|
|
|
td = tr[i].getElementsByTagName('td')[0];
|
|
|
|
|
if (td) {
|
|
|
|
|
txtValue = td.textContent || td.innerText;
|
|
|
|
|
if (txtValue.toUpperCase().indexOf(filter) > -1) {
|
|
|
|
|
tr[i].style.display = '';
|
|
|
|
|
} else {
|
|
|
|
|
tr[i].style.display = 'none';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ####################################################
|
|
|
|
|
// UPDATE PEER INFO
|
|
|
|
|
// ####################################################
|
|
|
|
|
|