aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/nextdoor/webview.js
blob: 0ea8f573017d43808f40639670573513f8a1bbb9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
module.exports = Ferdi => {
  const getMessages = function getMessages() {
    let unread = 0;
    const notificationBadge = document.getElementsByClassName('notification-badge')[0];
    if (notificationBadge != undefined) {
      unread = notificationBadge.innerText;
    }
    Ferdi.setBadge(parseInt(unread, 10));
  };

  Ferdi.loop(getMessages);
};