aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/teamwork-projects/webview.js
blob: 734eb4f1ccc1f6ce73504b0d31793f82098c39c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module.exports = (Ferdi) => {
  function getMessages() {
    let indirectCount = 0;
    const badge = document.getElementById('numNotifs2');

    if (badge && badge.innerText) {
      indirectCount = Ferdi.safeParseInt(badge.innerText);
    }

    Ferdi.setBadge(0, indirectCount);
  }

  Ferdi.loop(getMessages);
};