code.js : ajout comptage nb membres créés et modifiés
This commit is contained in:
parent
22e1245de9
commit
717a9a3b90
17
code.js
17
code.js
@ -360,3 +360,20 @@ function ajouterMembres(tmembres, num)
|
||||
}
|
||||
return tmembres;
|
||||
}
|
||||
|
||||
// Compter le nombre de membres créés et modifiés
|
||||
function compter()
|
||||
{
|
||||
let o = { cree: 0, modif: 0 };
|
||||
for (const msg of document.querySelectorAll('summary > h2'))
|
||||
{
|
||||
if (msg.textContent.includes('créé')) {
|
||||
o.cree = Number(msg.textContent.split(' ')[0]);
|
||||
}
|
||||
if (msg.textContent.includes('modifié')) {
|
||||
o.modif = Number(msg.textContent.split(' ')[0]);
|
||||
}
|
||||
}
|
||||
return o;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user