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

  Ferdi.loop(getMessages);
};