aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/roundcube/webview.js
blob: 08c6a9556a111ea6d13a0554e35e591897cfe32c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
module.exports = Ferdi => {
  const getMessages = () => {
    const directElements = document.querySelectorAll('.unreadcount');
    let direct = 0;
    for (const directElement of directElements) {
      direct += Ferdi.safeParseInt(directElement.textContent);
    }
    Ferdi.setBadge(direct);
  };

  Ferdi.loop(getMessages);
};