aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/teamwork-projects/webview.js
blob: aa3e7be6ca84a877c07258dd823638c3be60f646 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module.exports = (Ferdi) => {
  const 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);
};