aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/riseup/webview.js
blob: 7cbb7361ac515e76662c852b93d3ab3433935322 (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('unreadcount')[0];
    if (notificationBadge != undefined) {
      unread = notificationBadge.innerText;
    }
    Ferdi.setBadge(unread);
  };

  Ferdi.loop(getMessages);
};