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

  Ferdi.loop(getMessages);
};