aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/clubhouse/webview.js
blob: 9b2b782a357688f4bb8a45367ff17ffabf2cf94d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
module.exports = (Ferdi) => {
  function getMessages() {
    const hasNotifications = document.querySelector('#notifications-link .badge').classList.contains('visible');
    if (hasNotifications) {
      Ferdi.setBadge(0, 1);
    }
  }

  Ferdi.loop(getMessages);
};