aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/fleep/webview.js
blob: eaefbd16ac294484bf173a6383fb8122b13dbfaa (plain) (blame)
1
2
3
4
5
6
7
8
9
module.exports = Ferdi => {
  const getMessages = () => {
    // Count number of conversations or teams with unread messages
    const count = document.querySelectorAll('.unread-count').length;
    Ferdi.setBadge(count, 0);
  };

  Ferdi.loop(getMessages);
};