aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/protonet/webview.js
blob: 9ada45aa972699d7f89fa48c9cc5cb772fe3e943 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
module.exports = (Ferdi) => {
  const getMessages = () => {
    const unreadPrivateMessages = parseInt($('.messages .unread-meeps').text());
    const unreadGroupMessages = parseInt($('.today .unread-meeps').text());

    Ferdi.setBadge(unreadPrivateMessages + unreadGroupMessages);
  };

  Ferdi.loop(getMessages);
};